diff --git a/.gitignore b/.gitignore index 2cd5f845c..c42504e54 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ /Packages xcuserdata/ DerivedData/ +.derived-data/ .swiftpm/configuration/registries.json .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata .netrc diff --git a/Example/PhosphorSwiftExample/PhosphorSwiftExample.xcodeproj/project.pbxproj b/Example/PhosphorSwiftExample/PhosphorSwiftExample.xcodeproj/project.pbxproj index 2d804cc51..7490fdccd 100644 --- a/Example/PhosphorSwiftExample/PhosphorSwiftExample.xcodeproj/project.pbxproj +++ b/Example/PhosphorSwiftExample/PhosphorSwiftExample.xcodeproj/project.pbxproj @@ -447,8 +447,11 @@ MARKETING_VERSION = 1.0; PRODUCT_BUNDLE_IDENTIFIER = com.phosphoricons.PhosphorSwiftExample; PRODUCT_NAME = "$(TARGET_NAME)"; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx"; + SUPPORTS_MACCATALYST = NO; SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 1; }; name = Debug; }; @@ -472,8 +475,11 @@ MARKETING_VERSION = 1.0; PRODUCT_BUNDLE_IDENTIFIER = com.phosphoricons.PhosphorSwiftExample; PRODUCT_NAME = "$(TARGET_NAME)"; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx"; + SUPPORTS_MACCATALYST = NO; SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 1; }; name = Release; }; diff --git a/Example/PhosphorSwiftExample/PhosphorSwiftExample/ContentView.swift b/Example/PhosphorSwiftExample/PhosphorSwiftExample/ContentView.swift index e27fcbb71..371b0c717 100644 --- a/Example/PhosphorSwiftExample/PhosphorSwiftExample/ContentView.swift +++ b/Example/PhosphorSwiftExample/PhosphorSwiftExample/ContentView.swift @@ -31,68 +31,90 @@ struct ContentView: View { } var body: some View { +#if os(macOS) HSplitView { - Form { - Section(header: Text("Icon Style").font(.headline.smallCaps())) { - Picker("Weight", selection: $selectedWeight) { - Text("Regular").tag(Ph.IconWeight.regular) - Text("Thin").tag(Ph.IconWeight.thin) - Text("Light").tag(Ph.IconWeight.light) - Text("Bold").tag(Ph.IconWeight.bold) - Text("Fill").tag(Ph.IconWeight.fill) - Text("Duotone").tag(Ph.IconWeight.duotone) - } - ColorPicker("Color", selection: $color) - LabeledContent("Size") { - HStack { - TextField("", value: $size, formatter: NumberFormatter()) - .multilineTextAlignment(.trailing) - .textFieldStyle(.plain) - .labelsHidden() - .frame(maxWidth: 60) - Stepper("Value", value: $size, in: 16 ... 256, step: 4) - .labelsHidden() - } + controlPanel + .frame(minWidth: 280, idealWidth: 300, maxHeight: .infinity) + iconGrid + } +#else + NavigationStack { + VStack(spacing: 16) { + controlPanel + Divider() + iconGrid + } + .padding() + .navigationTitle("Phosphor Icons") + } +#endif + } + + private var controlPanel: some View { + Form { + Section(header: Text("Icon Style").font(.headline.smallCaps())) { + Picker("Weight", selection: $selectedWeight) { + Text("Regular").tag(Ph.IconWeight.regular) + Text("Thin").tag(Ph.IconWeight.thin) + Text("Light").tag(Ph.IconWeight.light) + Text("Bold").tag(Ph.IconWeight.bold) + Text("Fill").tag(Ph.IconWeight.fill) + Text("Duotone").tag(Ph.IconWeight.duotone) + } + ColorPicker("Color", selection: $color) + LabeledContent("Size") { + HStack { + TextField("", value: $size, formatter: NumberFormatter()) + .multilineTextAlignment(.trailing) + .textFieldStyle(.plain) + .labelsHidden() + .frame(maxWidth: 60) + Stepper("Value", value: $size, in: 16 ... 256, step: 4) + .labelsHidden() } - LabeledContent("Columns") { - HStack { - TextField("", value: $cols, formatter: NumberFormatter()) - .multilineTextAlignment(.trailing) - .textFieldStyle(.plain) - .labelsHidden() - .frame(maxWidth: 60) - Stepper("", value: $cols, in: 1 ... 100) - .labelsHidden() - } + } + LabeledContent("Columns") { + HStack { + TextField("", value: $cols, formatter: NumberFormatter()) + .multilineTextAlignment(.trailing) + .textFieldStyle(.plain) + .labelsHidden() + .frame(maxWidth: 60) + Stepper("", value: $cols, in: 1 ... 100) + .labelsHidden() } } + } - Section(header: Text("Rendering").font(.headline.smallCaps())) { - Picker("Interpolation", selection: $interp) { - Text("None").tag(Image.Interpolation.none) - Text("Low").tag(Image.Interpolation.low) - Text("Medium").tag(Image.Interpolation.medium) - Text("High").tag(Image.Interpolation.high) - }.pickerStyle(.inline) - Toggle("Antialiasing", isOn: $aa) + Section(header: Text("Rendering").font(.headline.smallCaps())) { + Picker("Interpolation", selection: $interp) { + Text("None").tag(Image.Interpolation.none) + Text("Low").tag(Image.Interpolation.low) + Text("Medium").tag(Image.Interpolation.medium) + Text("High").tag(Image.Interpolation.high) } + .pickerStyle(.inline) + Toggle("Antialiasing", isOn: $aa) } - .formStyle(.grouped) - .frame(minWidth: 280, idealWidth: 300, maxHeight: .infinity) + } + .formStyle(.grouped) + } - ScrollView { - LazyVGrid(columns: columns) { - ForEach(Ph.allCases) { icon in - icon.weight(selectedWeight) - .interpolation(interp) - .antialiased(aa) - .aspectRatio(contentMode: .fit) - .color(color) - .help(icon.rawValue.camelCased(with: "-")) - } - }.padding() - }.frame(maxWidth: .infinity) + private var iconGrid: some View { + ScrollView { + LazyVGrid(columns: columns) { + ForEach(Ph.allCases) { icon in + icon.weight(selectedWeight, size: CGSize(width: CGFloat(size), height: CGFloat(size))) + .interpolation(interp) + .antialiased(aa) + .aspectRatio(contentMode: .fit) + .color(color) + .help(icon.rawValue.camelCased(with: "-")) + } + } + .padding() } + .frame(maxWidth: .infinity) } } diff --git a/Package.swift b/Package.swift index cde6150be..7039a4ddf 100644 --- a/Package.swift +++ b/Package.swift @@ -17,7 +17,10 @@ let package = Package( // Targets can depend on other targets in this package and products from dependencies. .target( name: "PhosphorSwift", - path: "Sources"), + path: "Sources", + resources: [ + .copy("PhosphorSwift/Resources/BaseSVGs") + ]), .testTarget( name: "PhosphorSwiftTests", dependencies: ["PhosphorSwift"]), diff --git a/Scripts/Build b/Scripts/Build index 4e0ead83d..76dd6c5ff 100755 Binary files a/Scripts/Build and b/Scripts/Build differ diff --git a/Scripts/Build.swift b/Scripts/Build.swift index abefedb96..ac6a2ab17 100644 --- a/Scripts/Build.swift +++ b/Scripts/Build.swift @@ -12,8 +12,23 @@ enum Build { static func main() async throws { shell("git", "submodule", "update", "--remote", "--init", "--force", "--recursive") - let icons = try await buildAssets() + // Extract base icons from regular directory + let icons = try await extractBaseIcons() + print("Extracted \(icons.count) base icons") + + // Copy base SVG files + try await copyBaseSVGs(icons) + print("Copied base SVG files") + + // Generate Icons.swift try await emitSource(icons: icons) + print("Generated source code") + + // Clean up old weight variants + try await cleanupOldAssets() + print("Cleaned up old assets") + + print("Build complete!") } } @@ -57,59 +72,128 @@ extension String { } } -func buildAssets() async throws -> Set { - let CORE_DIR = URL(fileURLWithPath: "./core/assets", isDirectory: true) - let ASSETS_DIR = URL(fileURLWithPath: "./Sources/PhosphorSwift/Resources/Assets.xcassets/SVG", isDirectory: true) - +func extractBaseIcons() async throws -> Set { + let CORE_REGULAR_DIR = URL(fileURLWithPath: "./core/assets/regular", isDirectory: true) let fm = FileManager.default - let encoder = JSONEncoder() + var baseIcons: Set = Set() - var icons: Set = Set() + guard fm.fileExists(atPath: CORE_REGULAR_DIR.path) else { + print("Core regular assets directory not found.") + throw BuildError.missingCoreAssets + } + + let resourceKeys: [URLResourceKey] = [.isDirectoryKey] + guard let enumerator = fm.enumerator( + at: CORE_REGULAR_DIR, + includingPropertiesForKeys: resourceKeys, + options: [.skipsHiddenFiles] + ) else { + throw BuildError.cannotEnumerateAssets + } - do { - let resourceKeys: [URLResourceKey] = [.creationDateKey, .isDirectoryKey] - let enumerator = fm.enumerator( - at: CORE_DIR, - includingPropertiesForKeys: resourceKeys, - options: [.skipsHiddenFiles])! + for case let fileURL as URL in enumerator { + let resourceValues = try fileURL.resourceValues(forKeys: Set(resourceKeys)) + guard !resourceValues.isDirectory! else { continue } - for case let fileURL as URL in enumerator { - let resourceValues = try fileURL.resourceValues(forKeys: Set(resourceKeys)) - if !resourceValues.isDirectory! { - let fileName = fileURL.deletingPathExtension().lastPathComponent - let directory = ASSETS_DIR.appendingPathComponent("\(fileName).imageset") - let svgURL = directory.appendingPathComponent("\(fileName).svg") - - let contents = try encoder.encode(Contents.forFile(filename: "\(fileName).svg")) - - try fm.createDirectory(at: directory, withIntermediateDirectories: true, attributes: nil) - - if fm.fileExists(atPath: svgURL.path()) { - try fm.removeItem(at: svgURL) - } - - try fm.copyItem(at: fileURL, to: svgURL) - try contents.write(to: directory.appendingPathComponent("Contents.json"), options: .atomic) - - if !(fileName.hasSuffix("-thin") || fileName.hasSuffix("-light") || fileName.hasSuffix("-bold") || fileName.hasSuffix("-fill") || fileName.hasSuffix("-duotone")) { - icons.insert(fileName) - } - - print(fileName, contents) + let fileName = fileURL.deletingPathExtension().lastPathComponent + baseIcons.insert(fileName) + } + + return baseIcons +} + +enum IconWeight: String, CaseIterable { + case regular + case thin + case light + case bold + case fill + case duotone + + var directoryName: String { rawValue } + + var filenameSuffix: String? { + switch self { + case .regular: + return nil + case .thin, .light, .bold, .fill, .duotone: + return "-\(rawValue)" + } + } +} + +func copyBaseSVGs(_ baseIcons: Set) async throws { + let svgRoot = URL(fileURLWithPath: "./Sources/PhosphorSwift/Resources/BaseSVGs", isDirectory: true) + let fm = FileManager.default + + if fm.fileExists(atPath: svgRoot.path) { + try fm.removeItem(at: svgRoot) + } + try fm.createDirectory(at: svgRoot, withIntermediateDirectories: true) + + var missing: [IconWeight: [String]] = [:] + + for weight in IconWeight.allCases { + let destinationDirectory = svgRoot.appendingPathComponent(weight.rawValue, isDirectory: true) + try fm.createDirectory(at: destinationDirectory, withIntermediateDirectories: true) + + let sourceDirectory = URL(fileURLWithPath: "./core/assets/\(weight.directoryName)", isDirectory: true) + guard fm.fileExists(atPath: sourceDirectory.path) else { + print("Missing source directory for weight \(weight.rawValue) at \(sourceDirectory.path)") + continue + } + + for icon in baseIcons { + let filename: String + if let suffix = weight.filenameSuffix { + filename = "\(icon)\(suffix).svg" + } else { + filename = "\(icon).svg" + } + let sourceURL = sourceDirectory.appendingPathComponent(filename) + let destinationURL = destinationDirectory.appendingPathComponent("\(icon).svg") + + if fm.fileExists(atPath: sourceURL.path) { + try fm.copyItem(at: sourceURL, to: destinationURL) + } else { + missing[weight, default: []].append(icon) } } - } catch { - print(error) } + + if !missing.isEmpty { + for (weight, icons) in missing { + print("Missing \(icons.count) icons for weight \(weight.rawValue): \(icons.sorted().joined(separator: ", "))") + } + } +} + +func cleanupOldAssets() async throws { + let ASSETS_DIR = URL(fileURLWithPath: "./Sources/PhosphorSwift/Resources/Assets.xcassets", isDirectory: true) + let fm = FileManager.default - return icons + // Remove the old SVG assets directory + let svgAssetsDir = ASSETS_DIR.appendingPathComponent("SVG") + if fm.fileExists(atPath: svgAssetsDir.path) { + try fm.removeItem(at: svgAssetsDir) + } +} + +enum BuildError: Error { + case cannotEnumerateAssets + case missingCoreAssets } func emitSource(icons: Set) async throws { let ICONS_SOURCE = URL(fileURLWithPath: "./Sources/PhosphorSwift/Icons.swift", isDirectory: false) let enumEntries = icons.sorted().map { name in - " case \(name.camelCased(with: "-")) = \"\(name)\"" + let caseName = name.camelCased(with: "-") + // Handle Swift keywords + if caseName == "repeat" { + return " case `\(caseName)` = \"\(name)\"" + } + return " case \(caseName) = \"\(name)\"" } let source = """ // diff --git a/Sources/PhosphorSwift/PhosphorSwift.swift b/Sources/PhosphorSwift/PhosphorSwift.swift index dac9d5661..4596ab977 100644 --- a/Sources/PhosphorSwift/PhosphorSwift.swift +++ b/Sources/PhosphorSwift/PhosphorSwift.swift @@ -7,6 +7,7 @@ import SwiftUI + public extension Ph { enum IconWeight: String, CaseIterable, Identifiable { public var id: Self { self } @@ -19,47 +20,55 @@ public extension Ph { case duotone } - var regular: Image { Ph.icon(self.rawValue) } - var thin: Image { Ph.icon("\(self.rawValue)-thin") } - var light: Image { Ph.icon("\(self.rawValue)-light") } - var bold: Image { Ph.icon("\(self.rawValue)-bold") } - var fill: Image { Ph.icon("\(self.rawValue)-fill") } - var duotone: Image { Ph.icon("\(self.rawValue)-duotone") } + var regular: Image { + SVGRenderer.shared.renderIcon(self.rawValue, weight: .regular) + } + var thin: Image { + SVGRenderer.shared.renderIcon(self.rawValue, weight: .thin) + } + var light: Image { + SVGRenderer.shared.renderIcon(self.rawValue, weight: .light) + } + var bold: Image { + SVGRenderer.shared.renderIcon(self.rawValue, weight: .bold) + } + var fill: Image { + SVGRenderer.shared.renderIcon(self.rawValue, weight: .fill) + } + var duotone: Image { + SVGRenderer.shared.renderIcon(self.rawValue, weight: .duotone) + } func weight(_ weight: IconWeight) -> Image { - switch weight { - case .regular: return self.regular - case .thin: return self.thin - case .light: return self.light - case .bold: return self.bold - case .fill: return self.fill - case .duotone: return self.duotone - } + SVGRenderer.shared.renderIcon(self.rawValue, weight: weight) } - private static func icon(_ name: String) -> Image { - Image(name, bundle: .module) - .interpolation(.medium) - .resizable() + func weight(_ weight: IconWeight, size: CGSize) -> Image { + SVGRenderer.shared.renderIcon(self.rawValue, weight: weight, size: size) + } + + func small(_ weight: IconWeight = .regular) -> Image { + SVGRenderer.shared.renderIcon(self.rawValue, weight: weight, size: CGSize(width: 16, height: 16)) + } + + func medium(_ weight: IconWeight = .regular) -> Image { + SVGRenderer.shared.renderIcon(self.rawValue, weight: weight, size: CGSize(width: 24, height: 24)) + } + + func large(_ weight: IconWeight = .regular) -> Image { + SVGRenderer.shared.renderIcon(self.rawValue, weight: weight, size: CGSize(width: 32, height: 32)) } } -struct ColorBlended: ViewModifier { - fileprivate var color: Color - - public func body(content: Content) -> some View { - VStack { - ZStack { - content - self.color.blendMode(.sourceAtop) - } - .drawingGroup(opaque: false) - } +public extension Image { + func color(_ color: Color) -> some View { + self.renderingMode(.template) + .foregroundColor(color) } } public extension View { func color(_ color: Color) -> some View { - modifier(ColorBlended(color: color)) + foregroundColor(color) } } diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/Contents.json deleted file mode 100644 index 73c00596a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/Contents.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-bold.imageset/Contents.json deleted file mode 100644 index ed3e8f557..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"acorn-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-duotone.imageset/Contents.json deleted file mode 100644 index cede63a84..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"acorn-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-fill.imageset/Contents.json deleted file mode 100644 index c47690e81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"acorn-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-light.imageset/Contents.json deleted file mode 100644 index fdb4c23eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"acorn-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-thin.imageset/Contents.json deleted file mode 100644 index 1caa028a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"acorn-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn.imageset/Contents.json deleted file mode 100644 index 3c71d9508..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"acorn.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-bold.imageset/Contents.json deleted file mode 100644 index 42f5fbe46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"address-book-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-duotone.imageset/Contents.json deleted file mode 100644 index f9e59adb0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"address-book-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-fill.imageset/Contents.json deleted file mode 100644 index 05a4c01cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"address-book-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-light.imageset/Contents.json deleted file mode 100644 index 600eef2b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"address-book-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-bold.imageset/Contents.json deleted file mode 100644 index e8756c465..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"address-book-tabs-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-duotone.imageset/Contents.json deleted file mode 100644 index 1e0228111..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"address-book-tabs-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-fill.imageset/Contents.json deleted file mode 100644 index 1dcc43de4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"address-book-tabs-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-light.imageset/Contents.json deleted file mode 100644 index 8836c77af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"address-book-tabs-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-thin.imageset/Contents.json deleted file mode 100644 index 06dd9c8ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"address-book-tabs-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs.imageset/Contents.json deleted file mode 100644 index ce6b64731..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"address-book-tabs.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-thin.imageset/Contents.json deleted file mode 100644 index 2212673f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"address-book-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book.imageset/Contents.json deleted file mode 100644 index 9d69fa05c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"address-book.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-bold.imageset/Contents.json deleted file mode 100644 index 9a13784be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"air-traffic-control-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-duotone.imageset/Contents.json deleted file mode 100644 index adbd6057f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"air-traffic-control-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-fill.imageset/Contents.json deleted file mode 100644 index 488fad206..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"air-traffic-control-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-light.imageset/Contents.json deleted file mode 100644 index 53ffa74b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"air-traffic-control-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-thin.imageset/Contents.json deleted file mode 100644 index cdbd967bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"air-traffic-control-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control.imageset/Contents.json deleted file mode 100644 index 0b0cfc8dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"air-traffic-control.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-bold.imageset/Contents.json deleted file mode 100644 index 04785a04b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"airplane-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-duotone.imageset/Contents.json deleted file mode 100644 index f5ee0dac2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplane-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-fill.imageset/Contents.json deleted file mode 100644 index f3ca5eeab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"airplane-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-bold.imageset/Contents.json deleted file mode 100644 index d2a2de4a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplane-in-flight-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-duotone.imageset/Contents.json deleted file mode 100644 index cad0b0fa9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"airplane-in-flight-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-fill.imageset/Contents.json deleted file mode 100644 index 823a93911..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"airplane-in-flight-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-light.imageset/Contents.json deleted file mode 100644 index e93877eba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplane-in-flight-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-thin.imageset/Contents.json deleted file mode 100644 index 786a9aff9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplane-in-flight-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight.imageset/Contents.json deleted file mode 100644 index c2a9eea4e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"airplane-in-flight.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-bold.imageset/Contents.json deleted file mode 100644 index 517242a34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"airplane-landing-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-duotone.imageset/Contents.json deleted file mode 100644 index 8546a8e38..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplane-landing-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-fill.imageset/Contents.json deleted file mode 100644 index ded6ef736..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplane-landing-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-light.imageset/Contents.json deleted file mode 100644 index a8eb1ee3b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"airplane-landing-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-thin.imageset/Contents.json deleted file mode 100644 index 425137c3e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplane-landing-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing.imageset/Contents.json deleted file mode 100644 index 354ae3420..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"airplane-landing.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-light.imageset/Contents.json deleted file mode 100644 index bfbcd6675..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplane-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-bold.imageset/Contents.json deleted file mode 100644 index 919c1b159..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"airplane-takeoff-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-duotone.imageset/Contents.json deleted file mode 100644 index 40dc7c6ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"airplane-takeoff-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-fill.imageset/Contents.json deleted file mode 100644 index 2c283357b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplane-takeoff-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-light.imageset/Contents.json deleted file mode 100644 index ae5876da2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"airplane-takeoff-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-thin.imageset/Contents.json deleted file mode 100644 index 802d6879e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"airplane-takeoff-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff.imageset/Contents.json deleted file mode 100644 index 1462e4eab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"airplane-takeoff.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-bold.imageset/Contents.json deleted file mode 100644 index 249fc6b49..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"airplane-taxiing-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-duotone.imageset/Contents.json deleted file mode 100644 index 2f720b888..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"airplane-taxiing-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-fill.imageset/Contents.json deleted file mode 100644 index 3ae6a4429..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"airplane-taxiing-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-light.imageset/Contents.json deleted file mode 100644 index 06b967c34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplane-taxiing-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-thin.imageset/Contents.json deleted file mode 100644 index 418f2c015..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplane-taxiing-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing.imageset/Contents.json deleted file mode 100644 index 7e5f8281e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"airplane-taxiing.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-thin.imageset/Contents.json deleted file mode 100644 index b3ac9f723..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"airplane-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-bold.imageset/Contents.json deleted file mode 100644 index 28f212ca4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplane-tilt-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-duotone.imageset/Contents.json deleted file mode 100644 index c0bfa09da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"airplane-tilt-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-fill.imageset/Contents.json deleted file mode 100644 index ec3b14567..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplane-tilt-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-light.imageset/Contents.json deleted file mode 100644 index 5637cb3a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplane-tilt-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-thin.imageset/Contents.json deleted file mode 100644 index b02f7829f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"airplane-tilt-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt.imageset/Contents.json deleted file mode 100644 index 9b555ab48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplane-tilt.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane.imageset/Contents.json deleted file mode 100644 index 3bb3e766c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"airplane.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-bold.imageset/Contents.json deleted file mode 100644 index 392716a75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"airplay-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-duotone.imageset/Contents.json deleted file mode 100644 index e6e742a7c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"airplay-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-fill.imageset/Contents.json deleted file mode 100644 index 83e3f7c94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"airplay-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-light.imageset/Contents.json deleted file mode 100644 index a5f535453..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"airplay-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-thin.imageset/Contents.json deleted file mode 100644 index fcf1657b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"airplay-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay.imageset/Contents.json deleted file mode 100644 index ed3e5bf48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"airplay.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-bold.imageset/Contents.json deleted file mode 100644 index 40cfd62d6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"alarm-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-duotone.imageset/Contents.json deleted file mode 100644 index cce307fa4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"alarm-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-fill.imageset/Contents.json deleted file mode 100644 index a79879fdf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"alarm-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-light.imageset/Contents.json deleted file mode 100644 index c409a7a0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"alarm-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-thin.imageset/Contents.json deleted file mode 100644 index 4bdadfde0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"alarm-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm.imageset/Contents.json deleted file mode 100644 index 9032c32d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"alarm.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-bold.imageset/Contents.json deleted file mode 100644 index 4bebc7c98..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"alien-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-duotone.imageset/Contents.json deleted file mode 100644 index fe4b91a96..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"alien-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-fill.imageset/Contents.json deleted file mode 100644 index 1079d1dcb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"alien-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-light.imageset/Contents.json deleted file mode 100644 index 4b41ef71b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"alien-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-thin.imageset/Contents.json deleted file mode 100644 index 79d27b300..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"alien-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien.imageset/Contents.json deleted file mode 100644 index 2bbff647b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"alien.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-bold.imageset/Contents.json deleted file mode 100644 index 0c6bb95e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"align-bottom-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-duotone.imageset/Contents.json deleted file mode 100644 index 13a377712..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-bottom-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-fill.imageset/Contents.json deleted file mode 100644 index d5a2f0a0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"align-bottom-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-light.imageset/Contents.json deleted file mode 100644 index a2969f256..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-bottom-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-bold.imageset/Contents.json deleted file mode 100644 index 12a05012b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"align-bottom-simple-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-duotone.imageset/Contents.json deleted file mode 100644 index 4f8240eed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-bottom-simple-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-fill.imageset/Contents.json deleted file mode 100644 index 88f35681e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-bottom-simple-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-light.imageset/Contents.json deleted file mode 100644 index 9e9897aaa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-bottom-simple-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-thin.imageset/Contents.json deleted file mode 100644 index 3b2db2dc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-bottom-simple-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple.imageset/Contents.json deleted file mode 100644 index acce12007..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"align-bottom-simple.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-thin.imageset/Contents.json deleted file mode 100644 index 8e98c0c7e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"align-bottom-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom.imageset/Contents.json deleted file mode 100644 index 4350aa9d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"align-bottom.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-bold.imageset/Contents.json deleted file mode 100644 index c3dc821a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"align-center-horizontal-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-duotone.imageset/Contents.json deleted file mode 100644 index 3b17f696b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"align-center-horizontal-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-fill.imageset/Contents.json deleted file mode 100644 index 6e8d1aea6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-center-horizontal-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-light.imageset/Contents.json deleted file mode 100644 index c398429b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-center-horizontal-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-bold.imageset/Contents.json deleted file mode 100644 index c0214b146..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-center-horizontal-simple-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-duotone.imageset/Contents.json deleted file mode 100644 index 7534d1063..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"align-center-horizontal-simple-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-fill.imageset/Contents.json deleted file mode 100644 index 3075294e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-center-horizontal-simple-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-light.imageset/Contents.json deleted file mode 100644 index 83bb4130b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"align-center-horizontal-simple-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-thin.imageset/Contents.json deleted file mode 100644 index 6171e71e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"align-center-horizontal-simple-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple.imageset/Contents.json deleted file mode 100644 index 507028b5b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-center-horizontal-simple.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-thin.imageset/Contents.json deleted file mode 100644 index 90bae1e7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-center-horizontal-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal.imageset/Contents.json deleted file mode 100644 index 2261a29e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"align-center-horizontal.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-bold.imageset/Contents.json deleted file mode 100644 index 4949e164b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"align-center-vertical-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-duotone.imageset/Contents.json deleted file mode 100644 index 5801034e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"align-center-vertical-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-fill.imageset/Contents.json deleted file mode 100644 index 3c72b2c57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-center-vertical-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-light.imageset/Contents.json deleted file mode 100644 index 28eacf25f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-center-vertical-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-bold.imageset/Contents.json deleted file mode 100644 index e436e0209..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"align-center-vertical-simple-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-duotone.imageset/Contents.json deleted file mode 100644 index 72faa31ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-center-vertical-simple-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-fill.imageset/Contents.json deleted file mode 100644 index 130e81e38..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"align-center-vertical-simple-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-light.imageset/Contents.json deleted file mode 100644 index 379921694..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-center-vertical-simple-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-thin.imageset/Contents.json deleted file mode 100644 index 29179e88b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"align-center-vertical-simple-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple.imageset/Contents.json deleted file mode 100644 index d9a5466b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"align-center-vertical-simple.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-thin.imageset/Contents.json deleted file mode 100644 index 761f3b17f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-center-vertical-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical.imageset/Contents.json deleted file mode 100644 index 86bf57b8b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-center-vertical.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-bold.imageset/Contents.json deleted file mode 100644 index 14af066a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-left-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-duotone.imageset/Contents.json deleted file mode 100644 index b200f5709..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"align-left-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-fill.imageset/Contents.json deleted file mode 100644 index 0e254a93e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-left-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-light.imageset/Contents.json deleted file mode 100644 index 50f29cea4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-left-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-bold.imageset/Contents.json deleted file mode 100644 index b2f298fc3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"align-left-simple-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-duotone.imageset/Contents.json deleted file mode 100644 index f502c1876..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"align-left-simple-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-fill.imageset/Contents.json deleted file mode 100644 index bf11b3b28..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"align-left-simple-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-light.imageset/Contents.json deleted file mode 100644 index 6c2d024b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-left-simple-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-thin.imageset/Contents.json deleted file mode 100644 index 3c66d8933..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-left-simple-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple.imageset/Contents.json deleted file mode 100644 index 125b98166..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-left-simple.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-thin.imageset/Contents.json deleted file mode 100644 index 1ebd94927..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-left-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left.imageset/Contents.json deleted file mode 100644 index d75941453..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"align-left.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-bold.imageset/Contents.json deleted file mode 100644 index 6a4212c66..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"align-right-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-duotone.imageset/Contents.json deleted file mode 100644 index 4a029270a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"align-right-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-fill.imageset/Contents.json deleted file mode 100644 index 03799051a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-right-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-light.imageset/Contents.json deleted file mode 100644 index dd486c162..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"align-right-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-bold.imageset/Contents.json deleted file mode 100644 index 2c1142dbf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-right-simple-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-duotone.imageset/Contents.json deleted file mode 100644 index ccbd7dd2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-right-simple-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-fill.imageset/Contents.json deleted file mode 100644 index 174aa54f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"align-right-simple-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-light.imageset/Contents.json deleted file mode 100644 index 78ad3f0d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-right-simple-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-thin.imageset/Contents.json deleted file mode 100644 index de201eb3e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"align-right-simple-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple.imageset/Contents.json deleted file mode 100644 index cb344d670..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-right-simple.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-thin.imageset/Contents.json deleted file mode 100644 index 06cc097ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"align-right-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right.imageset/Contents.json deleted file mode 100644 index c934c2c2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-right.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-bold.imageset/Contents.json deleted file mode 100644 index 1814cea2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"align-top-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-duotone.imageset/Contents.json deleted file mode 100644 index a94157770..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-top-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-fill.imageset/Contents.json deleted file mode 100644 index ebbd8c957..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"align-top-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-light.imageset/Contents.json deleted file mode 100644 index 577d1815b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"align-top-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-bold.imageset/Contents.json deleted file mode 100644 index a41e726ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-top-simple-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-duotone.imageset/Contents.json deleted file mode 100644 index 5d5560b78..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"align-top-simple-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-fill.imageset/Contents.json deleted file mode 100644 index 74da01b4e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"align-top-simple-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-light.imageset/Contents.json deleted file mode 100644 index faca9a230..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"align-top-simple-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-thin.imageset/Contents.json deleted file mode 100644 index 55c7bd8e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"align-top-simple-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple.imageset/Contents.json deleted file mode 100644 index 09f2f5c10..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"align-top-simple.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-thin.imageset/Contents.json deleted file mode 100644 index 4eadfda82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"align-top-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top.imageset/Contents.json deleted file mode 100644 index 754673cab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"align-top.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-bold.imageset/Contents.json deleted file mode 100644 index bbe096734..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"amazon-logo-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-duotone.imageset/Contents.json deleted file mode 100644 index d926585ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"amazon-logo-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-fill.imageset/Contents.json deleted file mode 100644 index 2eebbbfda..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"amazon-logo-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-light.imageset/Contents.json deleted file mode 100644 index 215d58306..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"amazon-logo-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-thin.imageset/Contents.json deleted file mode 100644 index 4f7d3e453..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"amazon-logo-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo.imageset/Contents.json deleted file mode 100644 index 391ccb62e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"amazon-logo.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-bold.imageset/Contents.json deleted file mode 100644 index 03edccdcb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ambulance-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-duotone.imageset/Contents.json deleted file mode 100644 index 0428e2d3c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"ambulance-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-fill.imageset/Contents.json deleted file mode 100644 index 0e7fe268c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"ambulance-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-light.imageset/Contents.json deleted file mode 100644 index 50cf6d601..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ambulance-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-thin.imageset/Contents.json deleted file mode 100644 index d5c9a6053..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"ambulance-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance.imageset/Contents.json deleted file mode 100644 index e5c4abb9f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"ambulance.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-bold.imageset/Contents.json deleted file mode 100644 index d5360e519..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"anchor-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-duotone.imageset/Contents.json deleted file mode 100644 index c7049c45e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"anchor-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-fill.imageset/Contents.json deleted file mode 100644 index f685adde4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"anchor-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-light.imageset/Contents.json deleted file mode 100644 index f0b35871d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"anchor-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-bold.imageset/Contents.json deleted file mode 100644 index 1cf838e14..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"anchor-simple-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-duotone.imageset/Contents.json deleted file mode 100644 index 8700823d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"anchor-simple-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-fill.imageset/Contents.json deleted file mode 100644 index a9bae2b4a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"anchor-simple-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-light.imageset/Contents.json deleted file mode 100644 index d7d2b5076..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"anchor-simple-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-thin.imageset/Contents.json deleted file mode 100644 index 36b19e9aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"anchor-simple-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple.imageset/Contents.json deleted file mode 100644 index 39b5cb3e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"anchor-simple.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-thin.imageset/Contents.json deleted file mode 100644 index 94e09d200..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"anchor-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor.imageset/Contents.json deleted file mode 100644 index e13f3b612..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"anchor.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-bold.imageset/Contents.json deleted file mode 100644 index c02e172f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"android-logo-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-duotone.imageset/Contents.json deleted file mode 100644 index 9b99d7d15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"android-logo-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-fill.imageset/Contents.json deleted file mode 100644 index 5c258a12e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"android-logo-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-light.imageset/Contents.json deleted file mode 100644 index 4b2d37f34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"android-logo-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-thin.imageset/Contents.json deleted file mode 100644 index 43655e1c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"android-logo-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo.imageset/Contents.json deleted file mode 100644 index 644bdb801..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"android-logo.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-bold.imageset/Contents.json deleted file mode 100644 index 0cbde39e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"angle-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-duotone.imageset/Contents.json deleted file mode 100644 index 8613ca39f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"angle-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-fill.imageset/Contents.json deleted file mode 100644 index 809d948c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"angle-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-light.imageset/Contents.json deleted file mode 100644 index ff9b57d57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"angle-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-thin.imageset/Contents.json deleted file mode 100644 index 2cc306710..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"angle-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle.imageset/Contents.json deleted file mode 100644 index e296c6fcd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"angle.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-bold.imageset/Contents.json deleted file mode 100644 index dbfb65e3a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"angular-logo-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-duotone.imageset/Contents.json deleted file mode 100644 index 3d97ea4f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"angular-logo-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-fill.imageset/Contents.json deleted file mode 100644 index 98ab7a823..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"angular-logo-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-light.imageset/Contents.json deleted file mode 100644 index d29db16c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"angular-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-thin.imageset/Contents.json deleted file mode 100644 index 2ba451b1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"angular-logo-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo.imageset/Contents.json deleted file mode 100644 index 5d619ab52..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"angular-logo.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-bold.imageset/Contents.json deleted file mode 100644 index 6fadbb124..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"aperture-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-duotone.imageset/Contents.json deleted file mode 100644 index d05a52611..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"aperture-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-fill.imageset/Contents.json deleted file mode 100644 index b2264e956..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"aperture-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-light.imageset/Contents.json deleted file mode 100644 index 2de336255..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"aperture-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-thin.imageset/Contents.json deleted file mode 100644 index ad36bdfcf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"aperture-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture.imageset/Contents.json deleted file mode 100644 index f9d82f9ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"aperture.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-bold.imageset/Contents.json deleted file mode 100644 index edbbc6240..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"app-store-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-duotone.imageset/Contents.json deleted file mode 100644 index 0dab77575..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"app-store-logo-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-fill.imageset/Contents.json deleted file mode 100644 index 1e23f0773..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"app-store-logo-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-light.imageset/Contents.json deleted file mode 100644 index 6ca40e199..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"app-store-logo-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-thin.imageset/Contents.json deleted file mode 100644 index fa8734c7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"app-store-logo-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo.imageset/Contents.json deleted file mode 100644 index 26efc8d09..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"app-store-logo.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-bold.imageset/Contents.json deleted file mode 100644 index 95c5d0399..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"app-window-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-duotone.imageset/Contents.json deleted file mode 100644 index 7e7f38ba3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"app-window-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-fill.imageset/Contents.json deleted file mode 100644 index 5da2d0035..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"app-window-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-light.imageset/Contents.json deleted file mode 100644 index 1c53ac6d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"app-window-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-thin.imageset/Contents.json deleted file mode 100644 index 5640a10be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"app-window-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window.imageset/Contents.json deleted file mode 100644 index 03e44e26c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"app-window.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-bold.imageset/Contents.json deleted file mode 100644 index 89f589a54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"apple-logo-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-duotone.imageset/Contents.json deleted file mode 100644 index dad0487f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"apple-logo-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-fill.imageset/Contents.json deleted file mode 100644 index 86c7068c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"apple-logo-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-light.imageset/Contents.json deleted file mode 100644 index 51de76551..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"apple-logo-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-thin.imageset/Contents.json deleted file mode 100644 index 0feb135a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"apple-logo-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo.imageset/Contents.json deleted file mode 100644 index 0baabc7ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"apple-logo.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-bold.imageset/Contents.json deleted file mode 100644 index 9312f1ef9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"apple-podcasts-logo-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-duotone.imageset/Contents.json deleted file mode 100644 index bf56d6922..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"apple-podcasts-logo-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-fill.imageset/Contents.json deleted file mode 100644 index 49165450a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"apple-podcasts-logo-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-light.imageset/Contents.json deleted file mode 100644 index 7c63a60d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"apple-podcasts-logo-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-thin.imageset/Contents.json deleted file mode 100644 index f6960df50..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"apple-podcasts-logo-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo.imageset/Contents.json deleted file mode 100644 index 665b391b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"apple-podcasts-logo.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-bold.imageset/Contents.json deleted file mode 100644 index 8c5135cfd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"approximate-equals-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-duotone.imageset/Contents.json deleted file mode 100644 index 1498d663b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"approximate-equals-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-fill.imageset/Contents.json deleted file mode 100644 index 0ed8e0514..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"approximate-equals-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-light.imageset/Contents.json deleted file mode 100644 index bc7e0f868..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"approximate-equals-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-thin.imageset/Contents.json deleted file mode 100644 index d38e12517..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"approximate-equals-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals.imageset/Contents.json deleted file mode 100644 index 1dc74619d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"approximate-equals.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-bold.imageset/Contents.json deleted file mode 100644 index a4bb1b566..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"archive-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-bold.imageset/Contents.json deleted file mode 100644 index 082232621..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"archive-box-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-duotone.imageset/Contents.json deleted file mode 100644 index 27dd3f95e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"archive-box-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-fill.imageset/Contents.json deleted file mode 100644 index a2c9d997b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"archive-box-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-light.imageset/Contents.json deleted file mode 100644 index 7813d89e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"archive-box-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-thin.imageset/Contents.json deleted file mode 100644 index 7463a584c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"archive-box-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box.imageset/Contents.json deleted file mode 100644 index 29ca9da84..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"archive-box.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box.imageset/archive-box.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box.imageset/archive-box.svg deleted file mode 100644 index 7f6a5c34a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box.imageset/archive-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-duotone.imageset/Contents.json deleted file mode 100644 index a18a8552a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"archive-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-fill.imageset/Contents.json deleted file mode 100644 index 2acc86ced..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"archive-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-light.imageset/Contents.json deleted file mode 100644 index dd51f66c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"archive-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-thin.imageset/Contents.json deleted file mode 100644 index 811764807..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"archive-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-bold.imageset/Contents.json deleted file mode 100644 index 406d6fab4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"archive-tray-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-bold.imageset/archive-tray-bold.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-bold.imageset/archive-tray-bold.svg deleted file mode 100644 index 10f76f491..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-bold.imageset/archive-tray-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-duotone.imageset/Contents.json deleted file mode 100644 index ec8daede7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"archive-tray-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-fill.imageset/Contents.json deleted file mode 100644 index ef9a47ba2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"archive-tray-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-light.imageset/Contents.json deleted file mode 100644 index 32d4ec807..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"archive-tray-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-thin.imageset/Contents.json deleted file mode 100644 index 3d1c2e9bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"archive-tray-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray.imageset/Contents.json deleted file mode 100644 index 213b98f70..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"archive-tray.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray.imageset/archive-tray.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray.imageset/archive-tray.svg deleted file mode 100644 index bfd200baf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray.imageset/archive-tray.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive.imageset/Contents.json deleted file mode 100644 index 04171220a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"archive.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-bold.imageset/Contents.json deleted file mode 100644 index 45bfa906e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"armchair-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-duotone.imageset/Contents.json deleted file mode 100644 index c4d57ce32..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"armchair-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-fill.imageset/Contents.json deleted file mode 100644 index cf1ad6353..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"armchair-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-light.imageset/Contents.json deleted file mode 100644 index 4643ec287..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"armchair-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-thin.imageset/Contents.json deleted file mode 100644 index aea15d56c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"armchair-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair.imageset/Contents.json deleted file mode 100644 index 4413649d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"armchair.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-bold.imageset/Contents.json deleted file mode 100644 index d3127544e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-arc-left-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-duotone.imageset/Contents.json deleted file mode 100644 index 270657b69..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-arc-left-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-fill.imageset/Contents.json deleted file mode 100644 index a37b34c86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-arc-left-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-light.imageset/Contents.json deleted file mode 100644 index e42a353bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-arc-left-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-thin.imageset/Contents.json deleted file mode 100644 index 52b20e8fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-arc-left-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left.imageset/Contents.json deleted file mode 100644 index 6ec4a48d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-arc-left.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-bold.imageset/Contents.json deleted file mode 100644 index 578115f74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-arc-right-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-duotone.imageset/Contents.json deleted file mode 100644 index a5247d8d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-arc-right-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-fill.imageset/Contents.json deleted file mode 100644 index cb5061a72..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-arc-right-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-light.imageset/Contents.json deleted file mode 100644 index 3827a9285..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-arc-right-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-thin.imageset/Contents.json deleted file mode 100644 index 62b9766bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-arc-right-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right.imageset/Contents.json deleted file mode 100644 index 641bc7c38..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-arc-right.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-bold.imageset/Contents.json deleted file mode 100644 index 0500b542d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-double-up-left-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-duotone.imageset/Contents.json deleted file mode 100644 index 3f4818274..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-bend-double-up-left-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-fill.imageset/Contents.json deleted file mode 100644 index 882851c1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-double-up-left-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-light.imageset/Contents.json deleted file mode 100644 index 40ca902e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-bend-double-up-left-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-thin.imageset/Contents.json deleted file mode 100644 index 407521e98..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-double-up-left-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left.imageset/Contents.json deleted file mode 100644 index 3c1799f05..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-double-up-left.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-bold.imageset/Contents.json deleted file mode 100644 index 6ec492699..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-bend-double-up-right-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-duotone.imageset/Contents.json deleted file mode 100644 index d40363070..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-bend-double-up-right-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-fill.imageset/Contents.json deleted file mode 100644 index 8a11a4b9e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-bend-double-up-right-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-light.imageset/Contents.json deleted file mode 100644 index c1b50bc83..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-bend-double-up-right-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-thin.imageset/Contents.json deleted file mode 100644 index a19e70fe4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-bend-double-up-right-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right.imageset/Contents.json deleted file mode 100644 index 85f3ad3b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-bend-double-up-right.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-bold.imageset/Contents.json deleted file mode 100644 index 1bfd322f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-down-left-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-duotone.imageset/Contents.json deleted file mode 100644 index 2f6755aa6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-bend-down-left-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-fill.imageset/Contents.json deleted file mode 100644 index 8474e9f05..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-down-left-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-light.imageset/Contents.json deleted file mode 100644 index 6f59e15da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-bend-down-left-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-thin.imageset/Contents.json deleted file mode 100644 index 04c8859e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-down-left-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left.imageset/Contents.json deleted file mode 100644 index eefdcbb28..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-bend-down-left.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-bold.imageset/Contents.json deleted file mode 100644 index 6b11dd085..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-bend-down-right-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-duotone.imageset/Contents.json deleted file mode 100644 index de9deeaea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-bend-down-right-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-fill.imageset/Contents.json deleted file mode 100644 index d5e6cdc3c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-bend-down-right-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-light.imageset/Contents.json deleted file mode 100644 index b1cfa07e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-down-right-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-thin.imageset/Contents.json deleted file mode 100644 index 169d446c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-bend-down-right-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right.imageset/Contents.json deleted file mode 100644 index e140651bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-down-right.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-bold.imageset/Contents.json deleted file mode 100644 index 3969f127b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-bend-left-down-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-duotone.imageset/Contents.json deleted file mode 100644 index da9c0f39c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-bend-left-down-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-fill.imageset/Contents.json deleted file mode 100644 index 2afb6f65e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-bend-left-down-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-light.imageset/Contents.json deleted file mode 100644 index 2dd07e449..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-bend-left-down-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-thin.imageset/Contents.json deleted file mode 100644 index 6f33c32fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-bend-left-down-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down.imageset/Contents.json deleted file mode 100644 index 4aa812795..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-bend-left-down.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-bold.imageset/Contents.json deleted file mode 100644 index 29cda4777..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-left-up-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-duotone.imageset/Contents.json deleted file mode 100644 index 38fd42d57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-bend-left-up-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-fill.imageset/Contents.json deleted file mode 100644 index 06e5fe61f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-bend-left-up-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-light.imageset/Contents.json deleted file mode 100644 index 96689f457..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-bend-left-up-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-thin.imageset/Contents.json deleted file mode 100644 index 38df1aa05..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-bend-left-up-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up.imageset/Contents.json deleted file mode 100644 index 9aa74b37a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-bend-left-up.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-bold.imageset/Contents.json deleted file mode 100644 index 08ad0a4fa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-bend-right-down-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-duotone.imageset/Contents.json deleted file mode 100644 index d1ee3eb4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-bend-right-down-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-fill.imageset/Contents.json deleted file mode 100644 index 06964efcf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-bend-right-down-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-light.imageset/Contents.json deleted file mode 100644 index bdf42e1f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-bend-right-down-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-thin.imageset/Contents.json deleted file mode 100644 index 7058866cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-bend-right-down-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down.imageset/Contents.json deleted file mode 100644 index 994bce96a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-right-down.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-bold.imageset/Contents.json deleted file mode 100644 index 25cbe5af7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-bend-right-up-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-duotone.imageset/Contents.json deleted file mode 100644 index 50049adea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-right-up-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-fill.imageset/Contents.json deleted file mode 100644 index 9d1d5f041..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-right-up-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-light.imageset/Contents.json deleted file mode 100644 index 86054e38d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-bend-right-up-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-thin.imageset/Contents.json deleted file mode 100644 index 158f5f470..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-bend-right-up-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up.imageset/Contents.json deleted file mode 100644 index 80898f969..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-bend-right-up.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-bold.imageset/Contents.json deleted file mode 100644 index 7a272ce12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-bend-up-left-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-duotone.imageset/Contents.json deleted file mode 100644 index 2c1043dab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-bend-up-left-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-fill.imageset/Contents.json deleted file mode 100644 index fd00655d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-up-left-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-light.imageset/Contents.json deleted file mode 100644 index 22b66eee7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-up-left-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-thin.imageset/Contents.json deleted file mode 100644 index b82ef84c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-bend-up-left-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left.imageset/Contents.json deleted file mode 100644 index abfb81ae0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-bend-up-left.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-bold.imageset/Contents.json deleted file mode 100644 index caa9d05a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-up-right-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-duotone.imageset/Contents.json deleted file mode 100644 index 38949352d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-bend-up-right-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-fill.imageset/Contents.json deleted file mode 100644 index 50bdb5790..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-bend-up-right-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-light.imageset/Contents.json deleted file mode 100644 index a8028641a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-up-right-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-thin.imageset/Contents.json deleted file mode 100644 index de3700f5c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-bend-up-right-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right.imageset/Contents.json deleted file mode 100644 index c72578e99..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-bend-up-right.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-bold.imageset/Contents.json deleted file mode 100644 index 810dc5038..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-circle-down-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-duotone.imageset/Contents.json deleted file mode 100644 index 47cf91e6f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-circle-down-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-fill.imageset/Contents.json deleted file mode 100644 index 6ec2c4f79..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-circle-down-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-bold.imageset/Contents.json deleted file mode 100644 index cebc63038..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-circle-down-left-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-duotone.imageset/Contents.json deleted file mode 100644 index 148abcdb1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-circle-down-left-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-fill.imageset/Contents.json deleted file mode 100644 index 8b4880bd3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-circle-down-left-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-light.imageset/Contents.json deleted file mode 100644 index 05a474811..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-circle-down-left-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-thin.imageset/Contents.json deleted file mode 100644 index 885a6812e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-circle-down-left-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left.imageset/Contents.json deleted file mode 100644 index 99ca7eb77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-circle-down-left.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-light.imageset/Contents.json deleted file mode 100644 index 0f6d3d28d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-circle-down-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-bold.imageset/Contents.json deleted file mode 100644 index d1d56bf41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-circle-down-right-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-duotone.imageset/Contents.json deleted file mode 100644 index 68230fad5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-circle-down-right-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-fill.imageset/Contents.json deleted file mode 100644 index e3302ca5e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-circle-down-right-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-light.imageset/Contents.json deleted file mode 100644 index 62f30cec4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-circle-down-right-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-thin.imageset/Contents.json deleted file mode 100644 index 6955e180f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-circle-down-right-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right.imageset/Contents.json deleted file mode 100644 index bd00baa97..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-circle-down-right.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-thin.imageset/Contents.json deleted file mode 100644 index 3a5b57875..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-circle-down-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down.imageset/Contents.json deleted file mode 100644 index 0386156ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-circle-down.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-bold.imageset/Contents.json deleted file mode 100644 index 985581cc1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-circle-left-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-duotone.imageset/Contents.json deleted file mode 100644 index de3403388..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-circle-left-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-fill.imageset/Contents.json deleted file mode 100644 index f886a2c8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-circle-left-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-light.imageset/Contents.json deleted file mode 100644 index 018bcee5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-circle-left-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-thin.imageset/Contents.json deleted file mode 100644 index ce9cc6054..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-circle-left-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left.imageset/Contents.json deleted file mode 100644 index 86f7781dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-circle-left.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-bold.imageset/Contents.json deleted file mode 100644 index 660f17808..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-circle-right-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-duotone.imageset/Contents.json deleted file mode 100644 index 9bed66345..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-circle-right-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-fill.imageset/Contents.json deleted file mode 100644 index 336ce58c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-circle-right-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-light.imageset/Contents.json deleted file mode 100644 index e8e38e056..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-circle-right-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-thin.imageset/Contents.json deleted file mode 100644 index 7509c0b24..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-circle-right-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right.imageset/Contents.json deleted file mode 100644 index 274f638df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-circle-right.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-bold.imageset/Contents.json deleted file mode 100644 index 80aa134f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-circle-up-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-duotone.imageset/Contents.json deleted file mode 100644 index 74ff5e741..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-circle-up-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-fill.imageset/Contents.json deleted file mode 100644 index 72b721936..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-circle-up-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-bold.imageset/Contents.json deleted file mode 100644 index 43d0cac55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-circle-up-left-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-duotone.imageset/Contents.json deleted file mode 100644 index 44ffbb760..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-circle-up-left-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-fill.imageset/Contents.json deleted file mode 100644 index 99b3964b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-circle-up-left-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-light.imageset/Contents.json deleted file mode 100644 index 78acbf666..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-circle-up-left-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-thin.imageset/Contents.json deleted file mode 100644 index 65f36432c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-circle-up-left-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left.imageset/Contents.json deleted file mode 100644 index 1a35bbade..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-circle-up-left.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-light.imageset/Contents.json deleted file mode 100644 index 515cb104c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-circle-up-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-bold.imageset/Contents.json deleted file mode 100644 index 8d5c45c1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-circle-up-right-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-duotone.imageset/Contents.json deleted file mode 100644 index c85beb230..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-circle-up-right-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-fill.imageset/Contents.json deleted file mode 100644 index 9e777e3e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-circle-up-right-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-light.imageset/Contents.json deleted file mode 100644 index 53d0242f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-circle-up-right-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-thin.imageset/Contents.json deleted file mode 100644 index 0e35a6426..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-circle-up-right-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right.imageset/Contents.json deleted file mode 100644 index 08e8c5181..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-circle-up-right.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-thin.imageset/Contents.json deleted file mode 100644 index ad517828b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-circle-up-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up.imageset/Contents.json deleted file mode 100644 index e7dd75e73..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-circle-up.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-bold.imageset/Contents.json deleted file mode 100644 index 09bbc08c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-clockwise-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-duotone.imageset/Contents.json deleted file mode 100644 index 2e37d82e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-clockwise-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-fill.imageset/Contents.json deleted file mode 100644 index 0771635f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-clockwise-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-light.imageset/Contents.json deleted file mode 100644 index 03473aad4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-clockwise-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-thin.imageset/Contents.json deleted file mode 100644 index 22fa356e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-clockwise-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise.imageset/Contents.json deleted file mode 100644 index ddc2ce4dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-clockwise.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-bold.imageset/Contents.json deleted file mode 100644 index e390b9b11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-counter-clockwise-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-duotone.imageset/Contents.json deleted file mode 100644 index cbf06aa46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-counter-clockwise-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-fill.imageset/Contents.json deleted file mode 100644 index 53f4917d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-counter-clockwise-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-light.imageset/Contents.json deleted file mode 100644 index 389bedfe3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-counter-clockwise-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-thin.imageset/Contents.json deleted file mode 100644 index 707b2cbd4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-counter-clockwise-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise.imageset/Contents.json deleted file mode 100644 index ade40b2f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-counter-clockwise.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-bold.imageset/Contents.json deleted file mode 100644 index 0dc5424be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-down-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-duotone.imageset/Contents.json deleted file mode 100644 index 71ababc7e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-down-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-fill.imageset/Contents.json deleted file mode 100644 index bf0e88181..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-down-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-bold.imageset/Contents.json deleted file mode 100644 index 7b261b0a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-down-left-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-duotone.imageset/Contents.json deleted file mode 100644 index eab075745..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-down-left-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-fill.imageset/Contents.json deleted file mode 100644 index 917c4d55c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-down-left-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-light.imageset/Contents.json deleted file mode 100644 index f3aaba3d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-down-left-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-thin.imageset/Contents.json deleted file mode 100644 index 47c6e1f68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-down-left-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left.imageset/Contents.json deleted file mode 100644 index 90c1e2c01..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-down-left.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-light.imageset/Contents.json deleted file mode 100644 index 68e5d5a97..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-down-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-bold.imageset/Contents.json deleted file mode 100644 index 1aacfa004..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-down-right-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-duotone.imageset/Contents.json deleted file mode 100644 index d0507e6c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-down-right-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-fill.imageset/Contents.json deleted file mode 100644 index f0b94b86c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-down-right-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-light.imageset/Contents.json deleted file mode 100644 index 631868d71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-down-right-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-thin.imageset/Contents.json deleted file mode 100644 index da808afef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-down-right-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right.imageset/Contents.json deleted file mode 100644 index 4b8e260da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-down-right.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-thin.imageset/Contents.json deleted file mode 100644 index 823f2d1d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-down-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down.imageset/Contents.json deleted file mode 100644 index d2ad4d7d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-down.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-bold.imageset/Contents.json deleted file mode 100644 index 591ce56ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-elbow-down-left-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-duotone.imageset/Contents.json deleted file mode 100644 index 4c2cf1781..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-elbow-down-left-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-fill.imageset/Contents.json deleted file mode 100644 index 54c3916d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-elbow-down-left-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-light.imageset/Contents.json deleted file mode 100644 index 8e9b61079..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-elbow-down-left-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-thin.imageset/Contents.json deleted file mode 100644 index beccd46b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-elbow-down-left-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left.imageset/Contents.json deleted file mode 100644 index d1440707c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-elbow-down-left.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-bold.imageset/Contents.json deleted file mode 100644 index 76d9f2557..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-elbow-down-right-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-duotone.imageset/Contents.json deleted file mode 100644 index 67f9ce3d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-elbow-down-right-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-fill.imageset/Contents.json deleted file mode 100644 index 9737d6a80..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-elbow-down-right-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-light.imageset/Contents.json deleted file mode 100644 index 61befbc7c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-elbow-down-right-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-thin.imageset/Contents.json deleted file mode 100644 index acfcda56c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-elbow-down-right-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right.imageset/Contents.json deleted file mode 100644 index 37e7fe070..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-elbow-down-right.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-bold.imageset/Contents.json deleted file mode 100644 index d46eecf6a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-elbow-left-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-bold.imageset/Contents.json deleted file mode 100644 index 629513003..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-elbow-left-down-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-duotone.imageset/Contents.json deleted file mode 100644 index a4c56be82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-elbow-left-down-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-fill.imageset/Contents.json deleted file mode 100644 index a2c3743b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-elbow-left-down-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-light.imageset/Contents.json deleted file mode 100644 index 5a0fa2624..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-elbow-left-down-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-thin.imageset/Contents.json deleted file mode 100644 index d146d3c15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-elbow-left-down-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down.imageset/Contents.json deleted file mode 100644 index 241a89f8e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-elbow-left-down.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-duotone.imageset/Contents.json deleted file mode 100644 index 1ba10de1b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-elbow-left-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-fill.imageset/Contents.json deleted file mode 100644 index a6a4783aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-elbow-left-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-light.imageset/Contents.json deleted file mode 100644 index 652703ae4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-elbow-left-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-thin.imageset/Contents.json deleted file mode 100644 index 1a036376b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-elbow-left-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-bold.imageset/Contents.json deleted file mode 100644 index aa19a900d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-elbow-left-up-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-duotone.imageset/Contents.json deleted file mode 100644 index 19e6d4604..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-elbow-left-up-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-fill.imageset/Contents.json deleted file mode 100644 index 1d0c997a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-elbow-left-up-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-light.imageset/Contents.json deleted file mode 100644 index 74f2b84fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-elbow-left-up-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-thin.imageset/Contents.json deleted file mode 100644 index c427621ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-elbow-left-up-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up.imageset/Contents.json deleted file mode 100644 index 02410b894..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-elbow-left-up.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left.imageset/Contents.json deleted file mode 100644 index 33c3c7f0e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-elbow-left.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-bold.imageset/Contents.json deleted file mode 100644 index 8a025f777..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-elbow-right-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-bold.imageset/Contents.json deleted file mode 100644 index e55a3dcba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-elbow-right-down-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-duotone.imageset/Contents.json deleted file mode 100644 index 19e0598fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-elbow-right-down-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-fill.imageset/Contents.json deleted file mode 100644 index 2ea30b31c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-elbow-right-down-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-light.imageset/Contents.json deleted file mode 100644 index a31dbd509..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-elbow-right-down-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-thin.imageset/Contents.json deleted file mode 100644 index 0933c616e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-elbow-right-down-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down.imageset/Contents.json deleted file mode 100644 index a555ebdd2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-elbow-right-down.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-duotone.imageset/Contents.json deleted file mode 100644 index c09100c2b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-elbow-right-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-fill.imageset/Contents.json deleted file mode 100644 index f1bf82594..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-elbow-right-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-light.imageset/Contents.json deleted file mode 100644 index 19a2deb73..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-elbow-right-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-thin.imageset/Contents.json deleted file mode 100644 index 06c1b30c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-elbow-right-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-bold.imageset/Contents.json deleted file mode 100644 index d6d1a03d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-elbow-right-up-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-duotone.imageset/Contents.json deleted file mode 100644 index f47da863e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-elbow-right-up-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-fill.imageset/Contents.json deleted file mode 100644 index 82868d8be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-elbow-right-up-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-light.imageset/Contents.json deleted file mode 100644 index 40ed7346d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-elbow-right-up-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-thin.imageset/Contents.json deleted file mode 100644 index 9a6a15fa1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-elbow-right-up-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up.imageset/Contents.json deleted file mode 100644 index 273173874..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-elbow-right-up.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right.imageset/Contents.json deleted file mode 100644 index f357375e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-elbow-right.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-bold.imageset/Contents.json deleted file mode 100644 index 0c7f83c4f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-elbow-up-left-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-duotone.imageset/Contents.json deleted file mode 100644 index 9690ad0ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-elbow-up-left-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-fill.imageset/Contents.json deleted file mode 100644 index 8f9e7b1f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-elbow-up-left-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-light.imageset/Contents.json deleted file mode 100644 index 952bd1278..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-elbow-up-left-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-thin.imageset/Contents.json deleted file mode 100644 index d8fb01d51..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-elbow-up-left-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left.imageset/Contents.json deleted file mode 100644 index 15412e1b1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-elbow-up-left.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-bold.imageset/Contents.json deleted file mode 100644 index 2bc75300b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-elbow-up-right-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-duotone.imageset/Contents.json deleted file mode 100644 index 47d9de842..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-elbow-up-right-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-fill.imageset/Contents.json deleted file mode 100644 index 893bfddde..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-elbow-up-right-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-light.imageset/Contents.json deleted file mode 100644 index 3937dee8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-elbow-up-right-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-thin.imageset/Contents.json deleted file mode 100644 index fda1fc399..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-elbow-up-right-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right.imageset/Contents.json deleted file mode 100644 index 9a96e19a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-elbow-up-right.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-bold.imageset/Contents.json deleted file mode 100644 index ec803ff05..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-down-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-duotone.imageset/Contents.json deleted file mode 100644 index da2c174eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-fat-down-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-fill.imageset/Contents.json deleted file mode 100644 index 9cd8ab718..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-down-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-light.imageset/Contents.json deleted file mode 100644 index 063b71f8a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-down-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-thin.imageset/Contents.json deleted file mode 100644 index 6cd05b387..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-down-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down.imageset/Contents.json deleted file mode 100644 index b8e54ca1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-fat-down.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-bold.imageset/Contents.json deleted file mode 100644 index 762c152d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-fat-left-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-duotone.imageset/Contents.json deleted file mode 100644 index b5927824c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-left-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-fill.imageset/Contents.json deleted file mode 100644 index 2340d12c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-left-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-light.imageset/Contents.json deleted file mode 100644 index 2e6fcda26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-left-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-thin.imageset/Contents.json deleted file mode 100644 index cc27aa6f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-fat-left-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left.imageset/Contents.json deleted file mode 100644 index ee00c1323..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-fat-left.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-bold.imageset/Contents.json deleted file mode 100644 index e6ed46694..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-fat-line-down-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-duotone.imageset/Contents.json deleted file mode 100644 index df0347a62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-fat-line-down-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-fill.imageset/Contents.json deleted file mode 100644 index f278815a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-fat-line-down-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-light.imageset/Contents.json deleted file mode 100644 index 8fe034fbd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-fat-line-down-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-thin.imageset/Contents.json deleted file mode 100644 index 9aeac32ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-line-down-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down.imageset/Contents.json deleted file mode 100644 index 99aac2f71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-line-down.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-bold.imageset/Contents.json deleted file mode 100644 index 18b667805..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-fat-line-left-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-duotone.imageset/Contents.json deleted file mode 100644 index a5d5c6605..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-line-left-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-fill.imageset/Contents.json deleted file mode 100644 index b2e945753..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-line-left-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-light.imageset/Contents.json deleted file mode 100644 index f37135fa9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-fat-line-left-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-thin.imageset/Contents.json deleted file mode 100644 index 17bbccb65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-fat-line-left-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left.imageset/Contents.json deleted file mode 100644 index 0c56ec7e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-line-left.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-bold.imageset/Contents.json deleted file mode 100644 index 9965a22af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-line-right-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-duotone.imageset/Contents.json deleted file mode 100644 index a2db925e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-fat-line-right-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-fill.imageset/Contents.json deleted file mode 100644 index b7b236bb8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-fat-line-right-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-light.imageset/Contents.json deleted file mode 100644 index 28fa03235..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-line-right-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-thin.imageset/Contents.json deleted file mode 100644 index 68153d508..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-fat-line-right-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right.imageset/Contents.json deleted file mode 100644 index 8d6035133..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-line-right.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-bold.imageset/Contents.json deleted file mode 100644 index 4c6e8a47f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-fat-line-up-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-duotone.imageset/Contents.json deleted file mode 100644 index 37dd387ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-line-up-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-fill.imageset/Contents.json deleted file mode 100644 index 86209a792..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-line-up-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-light.imageset/Contents.json deleted file mode 100644 index eae736c13..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-line-up-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-thin.imageset/Contents.json deleted file mode 100644 index 1f9b114aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-fat-line-up-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up.imageset/Contents.json deleted file mode 100644 index 73ba52d1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-line-up.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-bold.imageset/Contents.json deleted file mode 100644 index 9585b7edf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-fat-lines-down-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-duotone.imageset/Contents.json deleted file mode 100644 index eca48e0d6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-lines-down-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-fill.imageset/Contents.json deleted file mode 100644 index a9e78a5ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-lines-down-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-light.imageset/Contents.json deleted file mode 100644 index 03f4a256d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-fat-lines-down-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-thin.imageset/Contents.json deleted file mode 100644 index 3d0b789fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-fat-lines-down-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down.imageset/Contents.json deleted file mode 100644 index 66e1247bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-fat-lines-down.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-bold.imageset/Contents.json deleted file mode 100644 index 07218ec0f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-fat-lines-left-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-duotone.imageset/Contents.json deleted file mode 100644 index e38926996..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-fat-lines-left-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-fill.imageset/Contents.json deleted file mode 100644 index 33a6036e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-fat-lines-left-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-light.imageset/Contents.json deleted file mode 100644 index 3d686d958..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-lines-left-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-thin.imageset/Contents.json deleted file mode 100644 index e37528936..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-lines-left-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left.imageset/Contents.json deleted file mode 100644 index fc70ec452..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-lines-left.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-bold.imageset/Contents.json deleted file mode 100644 index 0ae5d1134..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-fat-lines-right-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-duotone.imageset/Contents.json deleted file mode 100644 index f57d0a15b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-lines-right-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-fill.imageset/Contents.json deleted file mode 100644 index e02dda98e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-fat-lines-right-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-light.imageset/Contents.json deleted file mode 100644 index 80deb0fc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-lines-right-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-thin.imageset/Contents.json deleted file mode 100644 index 47f91abde..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-fat-lines-right-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right.imageset/Contents.json deleted file mode 100644 index 76c14b145..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-lines-right.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-bold.imageset/Contents.json deleted file mode 100644 index 79208e6d6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-fat-lines-up-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-duotone.imageset/Contents.json deleted file mode 100644 index 8e43bd09b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-fat-lines-up-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-fill.imageset/Contents.json deleted file mode 100644 index 87873202f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-fat-lines-up-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-light.imageset/Contents.json deleted file mode 100644 index 5af8481ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-fat-lines-up-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-thin.imageset/Contents.json deleted file mode 100644 index 366dc6ae1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-fat-lines-up-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up.imageset/Contents.json deleted file mode 100644 index fd9534421..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-lines-up.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-bold.imageset/Contents.json deleted file mode 100644 index ec1f478a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-right-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-duotone.imageset/Contents.json deleted file mode 100644 index 0a93dc254..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-right-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-fill.imageset/Contents.json deleted file mode 100644 index 61f2c858e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-fat-right-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-light.imageset/Contents.json deleted file mode 100644 index d8442930c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-fat-right-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-thin.imageset/Contents.json deleted file mode 100644 index 99da76297..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-right-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right.imageset/Contents.json deleted file mode 100644 index 0e4895f45..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-right.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-bold.imageset/Contents.json deleted file mode 100644 index 8e72c4c1e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-fat-up-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-duotone.imageset/Contents.json deleted file mode 100644 index f8e9751c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-fat-up-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-fill.imageset/Contents.json deleted file mode 100644 index a50940529..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-fat-up-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-light.imageset/Contents.json deleted file mode 100644 index f0777104b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-fat-up-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-thin.imageset/Contents.json deleted file mode 100644 index e832db7b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-fat-up-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up.imageset/Contents.json deleted file mode 100644 index 3a58d9feb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-fat-up.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-bold.imageset/Contents.json deleted file mode 100644 index d7d42f613..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-left-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-duotone.imageset/Contents.json deleted file mode 100644 index f58cee045..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-left-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-fill.imageset/Contents.json deleted file mode 100644 index b008d3501..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-left-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-light.imageset/Contents.json deleted file mode 100644 index cd7e23597..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-left-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-thin.imageset/Contents.json deleted file mode 100644 index 864b56faa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-left-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left.imageset/Contents.json deleted file mode 100644 index 8ee420201..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-left.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-bold.imageset/Contents.json deleted file mode 100644 index a6c012e8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-line-down-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-duotone.imageset/Contents.json deleted file mode 100644 index f2c8837b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-line-down-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-fill.imageset/Contents.json deleted file mode 100644 index c4f1c2516..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-line-down-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-bold.imageset/Contents.json deleted file mode 100644 index ad2a787fd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-line-down-left-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-duotone.imageset/Contents.json deleted file mode 100644 index 8fc5ac85e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-line-down-left-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-fill.imageset/Contents.json deleted file mode 100644 index 4e21e4c9a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-line-down-left-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-light.imageset/Contents.json deleted file mode 100644 index 517fb0fa7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-line-down-left-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-thin.imageset/Contents.json deleted file mode 100644 index e950af5ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-line-down-left-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left.imageset/Contents.json deleted file mode 100644 index 3ba2299a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-line-down-left.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-light.imageset/Contents.json deleted file mode 100644 index f535f5661..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-line-down-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-bold.imageset/Contents.json deleted file mode 100644 index 7c38c83fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-line-down-right-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-duotone.imageset/Contents.json deleted file mode 100644 index 298cdb202..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-line-down-right-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-fill.imageset/Contents.json deleted file mode 100644 index 35efc8223..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-line-down-right-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-light.imageset/Contents.json deleted file mode 100644 index e1bbad779..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-line-down-right-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-thin.imageset/Contents.json deleted file mode 100644 index d125b7410..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-line-down-right-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right.imageset/Contents.json deleted file mode 100644 index b122fadb8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-line-down-right.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-thin.imageset/Contents.json deleted file mode 100644 index 8b78b784a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-line-down-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down.imageset/Contents.json deleted file mode 100644 index f86669c43..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-line-down.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-bold.imageset/Contents.json deleted file mode 100644 index 02775819c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-line-left-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-duotone.imageset/Contents.json deleted file mode 100644 index b4e8c14b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-line-left-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-fill.imageset/Contents.json deleted file mode 100644 index f8fec9e7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-line-left-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-light.imageset/Contents.json deleted file mode 100644 index f581b84aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-line-left-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-thin.imageset/Contents.json deleted file mode 100644 index e8b383960..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-line-left-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left.imageset/Contents.json deleted file mode 100644 index a71e982da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-line-left.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-bold.imageset/Contents.json deleted file mode 100644 index f956a15ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-line-right-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-duotone.imageset/Contents.json deleted file mode 100644 index e8aab9225..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-line-right-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-fill.imageset/Contents.json deleted file mode 100644 index 1363f3769..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-line-right-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-light.imageset/Contents.json deleted file mode 100644 index 0ce58efaf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-line-right-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-thin.imageset/Contents.json deleted file mode 100644 index 6382fce43..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-line-right-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right.imageset/Contents.json deleted file mode 100644 index b70294557..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-line-right.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-bold.imageset/Contents.json deleted file mode 100644 index 3379e9d3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-line-up-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-duotone.imageset/Contents.json deleted file mode 100644 index ece41044b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-line-up-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-fill.imageset/Contents.json deleted file mode 100644 index c01978031..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-line-up-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-bold.imageset/Contents.json deleted file mode 100644 index 8dfce6a25..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-line-up-left-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-duotone.imageset/Contents.json deleted file mode 100644 index d2ef91947..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-line-up-left-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-fill.imageset/Contents.json deleted file mode 100644 index 6d7c81dd2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-line-up-left-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-light.imageset/Contents.json deleted file mode 100644 index 7e32467a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-line-up-left-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-thin.imageset/Contents.json deleted file mode 100644 index 27a1fac99..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-line-up-left-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left.imageset/Contents.json deleted file mode 100644 index 491814b01..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-line-up-left.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-light.imageset/Contents.json deleted file mode 100644 index e028d2c5a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-line-up-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-bold.imageset/Contents.json deleted file mode 100644 index 41eb4fd65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-line-up-right-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-duotone.imageset/Contents.json deleted file mode 100644 index fad7e0a7e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-line-up-right-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-fill.imageset/Contents.json deleted file mode 100644 index 3374036e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-line-up-right-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-light.imageset/Contents.json deleted file mode 100644 index 537f68605..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-line-up-right-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-thin.imageset/Contents.json deleted file mode 100644 index 8505c4d51..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-line-up-right-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right.imageset/Contents.json deleted file mode 100644 index cf75e41ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-line-up-right.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-thin.imageset/Contents.json deleted file mode 100644 index e24c3c138..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-line-up-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up.imageset/Contents.json deleted file mode 100644 index 5616a3264..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-line-up.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-bold.imageset/Contents.json deleted file mode 100644 index 14d58ee50..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-right-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-duotone.imageset/Contents.json deleted file mode 100644 index 3c848c946..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-right-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-fill.imageset/Contents.json deleted file mode 100644 index e4b390c0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-right-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-light.imageset/Contents.json deleted file mode 100644 index 4b4a06842..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-right-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-thin.imageset/Contents.json deleted file mode 100644 index f5f937adb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-right-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right.imageset/Contents.json deleted file mode 100644 index 3c034ea26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-right.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-bold.imageset/Contents.json deleted file mode 100644 index 805999d22..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-square-down-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-duotone.imageset/Contents.json deleted file mode 100644 index 9f1d473a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-square-down-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-fill.imageset/Contents.json deleted file mode 100644 index 324470e85..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-square-down-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-bold.imageset/Contents.json deleted file mode 100644 index 421bd73c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-square-down-left-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-duotone.imageset/Contents.json deleted file mode 100644 index ded0c4d13..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-square-down-left-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-fill.imageset/Contents.json deleted file mode 100644 index 9cc0257ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-square-down-left-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-light.imageset/Contents.json deleted file mode 100644 index 70954c43b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-square-down-left-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-thin.imageset/Contents.json deleted file mode 100644 index 7ccda142d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-square-down-left-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left.imageset/Contents.json deleted file mode 100644 index d1868337f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-square-down-left.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-light.imageset/Contents.json deleted file mode 100644 index 229899f6a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-square-down-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-bold.imageset/Contents.json deleted file mode 100644 index 9be23230b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-square-down-right-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-duotone.imageset/Contents.json deleted file mode 100644 index aa9d7aa68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-square-down-right-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-fill.imageset/Contents.json deleted file mode 100644 index ec2c65b58..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-square-down-right-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-light.imageset/Contents.json deleted file mode 100644 index c22ce979a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-square-down-right-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-thin.imageset/Contents.json deleted file mode 100644 index 80b154c0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-square-down-right-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right.imageset/Contents.json deleted file mode 100644 index d25892abe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-square-down-right.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-thin.imageset/Contents.json deleted file mode 100644 index 1722e2197..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-square-down-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down.imageset/Contents.json deleted file mode 100644 index ff6fe527d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-square-down.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-bold.imageset/Contents.json deleted file mode 100644 index e8d182d44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-square-in-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-duotone.imageset/Contents.json deleted file mode 100644 index a7df643be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-square-in-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-fill.imageset/Contents.json deleted file mode 100644 index 9f58d2fc7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-square-in-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-light.imageset/Contents.json deleted file mode 100644 index 9c339b2cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-square-in-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-thin.imageset/Contents.json deleted file mode 100644 index 17974a391..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-square-in-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in.imageset/Contents.json deleted file mode 100644 index 64d78bf0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-square-in.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-bold.imageset/Contents.json deleted file mode 100644 index 2a0745ff7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-square-left-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-duotone.imageset/Contents.json deleted file mode 100644 index 427d4c005..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-square-left-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-fill.imageset/Contents.json deleted file mode 100644 index c42d0f37c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-square-left-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-light.imageset/Contents.json deleted file mode 100644 index d46939ca2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-square-left-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-thin.imageset/Contents.json deleted file mode 100644 index 115c75263..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-square-left-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left.imageset/Contents.json deleted file mode 100644 index 5093b60a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-square-left.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-bold.imageset/Contents.json deleted file mode 100644 index 6f0544df5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-square-out-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-duotone.imageset/Contents.json deleted file mode 100644 index bb274032d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-square-out-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-fill.imageset/Contents.json deleted file mode 100644 index b7ea307ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-square-out-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-light.imageset/Contents.json deleted file mode 100644 index 0697cf38b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-square-out-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-thin.imageset/Contents.json deleted file mode 100644 index 30f64409b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-square-out-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out.imageset/Contents.json deleted file mode 100644 index 6c505ccf6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-square-out.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-bold.imageset/Contents.json deleted file mode 100644 index 16fbac013..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-square-right-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-duotone.imageset/Contents.json deleted file mode 100644 index 644b06b0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-square-right-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-fill.imageset/Contents.json deleted file mode 100644 index ed9fa2bb5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-square-right-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-light.imageset/Contents.json deleted file mode 100644 index 1f6caa122..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-square-right-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-thin.imageset/Contents.json deleted file mode 100644 index f45f07949..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-square-right-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right.imageset/Contents.json deleted file mode 100644 index 49a70e689..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-square-right.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-bold.imageset/Contents.json deleted file mode 100644 index c818550fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-square-up-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-duotone.imageset/Contents.json deleted file mode 100644 index 2cd103430..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-square-up-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-fill.imageset/Contents.json deleted file mode 100644 index 38dc4e794..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-square-up-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-bold.imageset/Contents.json deleted file mode 100644 index 7247a2d82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-square-up-left-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-duotone.imageset/Contents.json deleted file mode 100644 index 1ecd6e8c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-square-up-left-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-fill.imageset/Contents.json deleted file mode 100644 index 6c0171aa6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-square-up-left-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-light.imageset/Contents.json deleted file mode 100644 index fac081df5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-square-up-left-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-thin.imageset/Contents.json deleted file mode 100644 index 0727f701a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-square-up-left-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left.imageset/Contents.json deleted file mode 100644 index d1c835c0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-square-up-left.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-light.imageset/Contents.json deleted file mode 100644 index a0ae7a54b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-square-up-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-bold.imageset/Contents.json deleted file mode 100644 index 1bdedfa0f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-square-up-right-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-duotone.imageset/Contents.json deleted file mode 100644 index d904eee8e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-square-up-right-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-fill.imageset/Contents.json deleted file mode 100644 index 3e6ae1824..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-square-up-right-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-light.imageset/Contents.json deleted file mode 100644 index fee50253d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-square-up-right-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-thin.imageset/Contents.json deleted file mode 100644 index 43f40fad3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-square-up-right-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right.imageset/Contents.json deleted file mode 100644 index d0cd7c5ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-square-up-right.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-thin.imageset/Contents.json deleted file mode 100644 index a4241ae84..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-square-up-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up.imageset/Contents.json deleted file mode 100644 index 4c1758ec0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-square-up.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-bold.imageset/Contents.json deleted file mode 100644 index add6e7743..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-u-down-left-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-duotone.imageset/Contents.json deleted file mode 100644 index f05293512..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-u-down-left-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-fill.imageset/Contents.json deleted file mode 100644 index bee162e48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-u-down-left-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-light.imageset/Contents.json deleted file mode 100644 index 6904f4f16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-u-down-left-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-thin.imageset/Contents.json deleted file mode 100644 index 7ddeb248b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-u-down-left-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left.imageset/Contents.json deleted file mode 100644 index 15896ecf9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-u-down-left.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-bold.imageset/Contents.json deleted file mode 100644 index 7fc2bf53f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-u-down-right-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-duotone.imageset/Contents.json deleted file mode 100644 index b53570bfe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-u-down-right-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-fill.imageset/Contents.json deleted file mode 100644 index 30b51844d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-u-down-right-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-light.imageset/Contents.json deleted file mode 100644 index e46466526..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-u-down-right-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-thin.imageset/Contents.json deleted file mode 100644 index 7e76d8f7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-u-down-right-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right.imageset/Contents.json deleted file mode 100644 index 84e3b7054..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-u-down-right.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-bold.imageset/Contents.json deleted file mode 100644 index 53fcd1fb9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-u-left-down-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-duotone.imageset/Contents.json deleted file mode 100644 index f3c7414c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-u-left-down-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-fill.imageset/Contents.json deleted file mode 100644 index 9ada6738d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-u-left-down-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-light.imageset/Contents.json deleted file mode 100644 index 3208252b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-u-left-down-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-thin.imageset/Contents.json deleted file mode 100644 index 8c51a31b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-u-left-down-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down.imageset/Contents.json deleted file mode 100644 index 9042ba227..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrow-u-left-down.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-bold.imageset/Contents.json deleted file mode 100644 index ea183b85d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-u-left-up-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-duotone.imageset/Contents.json deleted file mode 100644 index 4c98b2225..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-u-left-up-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-fill.imageset/Contents.json deleted file mode 100644 index cc7d3a229..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-u-left-up-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-light.imageset/Contents.json deleted file mode 100644 index d998c9d5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-u-left-up-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-thin.imageset/Contents.json deleted file mode 100644 index b1125d488..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-u-left-up-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up.imageset/Contents.json deleted file mode 100644 index 08215ac21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-u-left-up.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-bold.imageset/Contents.json deleted file mode 100644 index 73220f661..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-u-right-down-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-duotone.imageset/Contents.json deleted file mode 100644 index da2320a4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-u-right-down-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-fill.imageset/Contents.json deleted file mode 100644 index 2d213a888..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-u-right-down-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-light.imageset/Contents.json deleted file mode 100644 index 3ad271951..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-u-right-down-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-thin.imageset/Contents.json deleted file mode 100644 index 9ea853720..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-u-right-down-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down.imageset/Contents.json deleted file mode 100644 index be7b8d082..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-u-right-down.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-bold.imageset/Contents.json deleted file mode 100644 index a1a4a7f29..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-u-right-up-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-duotone.imageset/Contents.json deleted file mode 100644 index aa70539ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-u-right-up-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-fill.imageset/Contents.json deleted file mode 100644 index 755493b2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-u-right-up-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-light.imageset/Contents.json deleted file mode 100644 index caa36eef8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-u-right-up-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-thin.imageset/Contents.json deleted file mode 100644 index 5911ec774..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-u-right-up-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up.imageset/Contents.json deleted file mode 100644 index b172ecac3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrow-u-right-up.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-bold.imageset/Contents.json deleted file mode 100644 index e5cc860ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-u-up-left-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-duotone.imageset/Contents.json deleted file mode 100644 index 52b34e49e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-u-up-left-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-fill.imageset/Contents.json deleted file mode 100644 index 6b6ae9a86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-u-up-left-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-light.imageset/Contents.json deleted file mode 100644 index 44b64daca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-u-up-left-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-thin.imageset/Contents.json deleted file mode 100644 index 5c138dc33..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-u-up-left-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left.imageset/Contents.json deleted file mode 100644 index 82ca163c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-u-up-left.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-bold.imageset/Contents.json deleted file mode 100644 index 905f02e31..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-u-up-right-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-duotone.imageset/Contents.json deleted file mode 100644 index 83d2581bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-u-up-right-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-fill.imageset/Contents.json deleted file mode 100644 index f6d33171a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-u-up-right-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-light.imageset/Contents.json deleted file mode 100644 index fe39f21ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-u-up-right-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-thin.imageset/Contents.json deleted file mode 100644 index 6053d5207..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-u-up-right-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right.imageset/Contents.json deleted file mode 100644 index a07e7e645..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-u-up-right.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-bold.imageset/Contents.json deleted file mode 100644 index be439c858..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-up-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-duotone.imageset/Contents.json deleted file mode 100644 index ce301bb5b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-up-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-fill.imageset/Contents.json deleted file mode 100644 index 753695ac2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-up-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-bold.imageset/Contents.json deleted file mode 100644 index 08b0aef31..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-up-left-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-duotone.imageset/Contents.json deleted file mode 100644 index b58489f62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-up-left-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-fill.imageset/Contents.json deleted file mode 100644 index cd8f7f0f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-up-left-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-light.imageset/Contents.json deleted file mode 100644 index be2d36a1b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-up-left-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-thin.imageset/Contents.json deleted file mode 100644 index d117950ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-up-left-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left.imageset/Contents.json deleted file mode 100644 index 902089c75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-up-left.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-light.imageset/Contents.json deleted file mode 100644 index 4d4b155f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrow-up-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-bold.imageset/Contents.json deleted file mode 100644 index 8f5a7ee58..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-up-right-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-duotone.imageset/Contents.json deleted file mode 100644 index c4b5d9cdd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-up-right-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-fill.imageset/Contents.json deleted file mode 100644 index 4a161ceb4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrow-up-right-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-light.imageset/Contents.json deleted file mode 100644 index 8ee595517..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-up-right-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-thin.imageset/Contents.json deleted file mode 100644 index b26b4ef8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrow-up-right-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right.imageset/Contents.json deleted file mode 100644 index a1421376d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrow-up-right.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-thin.imageset/Contents.json deleted file mode 100644 index 6dd01e8a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrow-up-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up.imageset/Contents.json deleted file mode 100644 index a4c7df6d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrow-up.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-bold.imageset/Contents.json deleted file mode 100644 index 1e09c0ed4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-clockwise-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-duotone.imageset/Contents.json deleted file mode 100644 index 3bf479144..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-clockwise-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-fill.imageset/Contents.json deleted file mode 100644 index e5bf9975f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-clockwise-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-light.imageset/Contents.json deleted file mode 100644 index a6e7dd6c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-clockwise-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-thin.imageset/Contents.json deleted file mode 100644 index baf45d414..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-clockwise-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise.imageset/Contents.json deleted file mode 100644 index 42b62fd0e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-clockwise.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-bold.imageset/Contents.json deleted file mode 100644 index 77ac2798a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-counter-clockwise-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-duotone.imageset/Contents.json deleted file mode 100644 index 88eac9afe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-counter-clockwise-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-fill.imageset/Contents.json deleted file mode 100644 index 785ea969d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrows-counter-clockwise-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-light.imageset/Contents.json deleted file mode 100644 index edf36be21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrows-counter-clockwise-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-thin.imageset/Contents.json deleted file mode 100644 index 44ce1ff67..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-counter-clockwise-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise.imageset/Contents.json deleted file mode 100644 index a7ec78923..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-counter-clockwise.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-bold.imageset/Contents.json deleted file mode 100644 index e4e213785..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrows-down-up-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-duotone.imageset/Contents.json deleted file mode 100644 index 50daab63f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-down-up-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-fill.imageset/Contents.json deleted file mode 100644 index bc0df6ebf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-down-up-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-light.imageset/Contents.json deleted file mode 100644 index 17d2aeddc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-down-up-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-thin.imageset/Contents.json deleted file mode 100644 index 1e593b52c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-down-up-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up.imageset/Contents.json deleted file mode 100644 index 4fb96e419..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-down-up.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-bold.imageset/Contents.json deleted file mode 100644 index e5d4074a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-horizontal-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-duotone.imageset/Contents.json deleted file mode 100644 index ca38e8852..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-horizontal-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-fill.imageset/Contents.json deleted file mode 100644 index c398d7af1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrows-horizontal-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-light.imageset/Contents.json deleted file mode 100644 index 1580003f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrows-horizontal-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-thin.imageset/Contents.json deleted file mode 100644 index 134641588..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrows-horizontal-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal.imageset/Contents.json deleted file mode 100644 index d7844bc02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrows-horizontal.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-bold.imageset/Contents.json deleted file mode 100644 index 164156a2a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrows-in-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-bold.imageset/Contents.json deleted file mode 100644 index e1c543784..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-in-cardinal-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-duotone.imageset/Contents.json deleted file mode 100644 index 7af2bad07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrows-in-cardinal-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-fill.imageset/Contents.json deleted file mode 100644 index 70a69d2cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-in-cardinal-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-light.imageset/Contents.json deleted file mode 100644 index 58a5936e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-in-cardinal-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-thin.imageset/Contents.json deleted file mode 100644 index 8f9a59030..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-in-cardinal-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal.imageset/Contents.json deleted file mode 100644 index d560dd201..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-in-cardinal.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-duotone.imageset/Contents.json deleted file mode 100644 index 7f5cfb53d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-in-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-fill.imageset/Contents.json deleted file mode 100644 index 41a806c54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrows-in-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-light.imageset/Contents.json deleted file mode 100644 index 447798e5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-in-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-bold.imageset/Contents.json deleted file mode 100644 index c2abcc5c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-in-line-horizontal-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-duotone.imageset/Contents.json deleted file mode 100644 index 121f988de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrows-in-line-horizontal-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-fill.imageset/Contents.json deleted file mode 100644 index ad628ebb6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-in-line-horizontal-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-light.imageset/Contents.json deleted file mode 100644 index ce44fce91..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-in-line-horizontal-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-thin.imageset/Contents.json deleted file mode 100644 index d5352a585..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrows-in-line-horizontal-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal.imageset/Contents.json deleted file mode 100644 index 593c5bf91..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrows-in-line-horizontal.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-bold.imageset/Contents.json deleted file mode 100644 index 2dc9e325b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-in-line-vertical-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-duotone.imageset/Contents.json deleted file mode 100644 index 654c117ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-in-line-vertical-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-fill.imageset/Contents.json deleted file mode 100644 index 54d542f55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-in-line-vertical-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-light.imageset/Contents.json deleted file mode 100644 index 7fac14c53..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-in-line-vertical-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-thin.imageset/Contents.json deleted file mode 100644 index ba4230da9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrows-in-line-vertical-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical.imageset/Contents.json deleted file mode 100644 index 64cd2e579..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-in-line-vertical.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-bold.imageset/Contents.json deleted file mode 100644 index 13f6c2cc9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-in-simple-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-duotone.imageset/Contents.json deleted file mode 100644 index 17eaad2c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-in-simple-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-fill.imageset/Contents.json deleted file mode 100644 index 6028866c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrows-in-simple-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-light.imageset/Contents.json deleted file mode 100644 index 986514d2f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-in-simple-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-thin.imageset/Contents.json deleted file mode 100644 index 1a3b7da74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrows-in-simple-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple.imageset/Contents.json deleted file mode 100644 index 3257bde79..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-in-simple.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-thin.imageset/Contents.json deleted file mode 100644 index a98f6204e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-in-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in.imageset/Contents.json deleted file mode 100644 index 622a184f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrows-in.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-bold.imageset/Contents.json deleted file mode 100644 index 5086073fe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-left-right-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-duotone.imageset/Contents.json deleted file mode 100644 index f71f71ec6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-left-right-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-fill.imageset/Contents.json deleted file mode 100644 index 72bd70b89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-left-right-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-light.imageset/Contents.json deleted file mode 100644 index 31a407beb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-left-right-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-thin.imageset/Contents.json deleted file mode 100644 index 885bbbb44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrows-left-right-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right.imageset/Contents.json deleted file mode 100644 index 822a4cef6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-left-right.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-bold.imageset/Contents.json deleted file mode 100644 index 3432d306b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrows-merge-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-duotone.imageset/Contents.json deleted file mode 100644 index 04e742ece..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrows-merge-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-fill.imageset/Contents.json deleted file mode 100644 index 49ca1fd02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrows-merge-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-light.imageset/Contents.json deleted file mode 100644 index 18a333c3b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrows-merge-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-thin.imageset/Contents.json deleted file mode 100644 index 046f74e08..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrows-merge-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge.imageset/Contents.json deleted file mode 100644 index b7e21a2c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrows-merge.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-bold.imageset/Contents.json deleted file mode 100644 index 1943c5c11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-out-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-bold.imageset/Contents.json deleted file mode 100644 index 649355c65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrows-out-cardinal-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-duotone.imageset/Contents.json deleted file mode 100644 index 7d0270b64..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrows-out-cardinal-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-fill.imageset/Contents.json deleted file mode 100644 index b7e2f852f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-out-cardinal-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-light.imageset/Contents.json deleted file mode 100644 index df9cff992..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-out-cardinal-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-thin.imageset/Contents.json deleted file mode 100644 index ec274c041..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrows-out-cardinal-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal.imageset/Contents.json deleted file mode 100644 index af2c9492d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrows-out-cardinal.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-duotone.imageset/Contents.json deleted file mode 100644 index 52f247e52..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrows-out-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-fill.imageset/Contents.json deleted file mode 100644 index a08c1e73b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-out-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-light.imageset/Contents.json deleted file mode 100644 index a248e06e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-out-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-bold.imageset/Contents.json deleted file mode 100644 index 4b1e382bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-out-line-horizontal-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-duotone.imageset/Contents.json deleted file mode 100644 index 5ef6c8b93..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-out-line-horizontal-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-fill.imageset/Contents.json deleted file mode 100644 index 7c20ff24c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-out-line-horizontal-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-light.imageset/Contents.json deleted file mode 100644 index e816b9976..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-out-line-horizontal-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-thin.imageset/Contents.json deleted file mode 100644 index 1ed235f4a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-out-line-horizontal-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal.imageset/Contents.json deleted file mode 100644 index 2634c5243..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-out-line-horizontal.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-bold.imageset/Contents.json deleted file mode 100644 index 77d711984..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrows-out-line-vertical-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-duotone.imageset/Contents.json deleted file mode 100644 index cf72e11ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-out-line-vertical-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-fill.imageset/Contents.json deleted file mode 100644 index 4f0511df4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-out-line-vertical-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-light.imageset/Contents.json deleted file mode 100644 index 4d96db4a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-out-line-vertical-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-thin.imageset/Contents.json deleted file mode 100644 index b2227b947..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrows-out-line-vertical-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical.imageset/Contents.json deleted file mode 100644 index d2627b30f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrows-out-line-vertical.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-bold.imageset/Contents.json deleted file mode 100644 index 5d90c9b77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-out-simple-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-duotone.imageset/Contents.json deleted file mode 100644 index 0cd5929b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrows-out-simple-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-fill.imageset/Contents.json deleted file mode 100644 index 17cee811e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"arrows-out-simple-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-light.imageset/Contents.json deleted file mode 100644 index 1e6dc82c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"arrows-out-simple-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-thin.imageset/Contents.json deleted file mode 100644 index d12b370f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-out-simple-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple.imageset/Contents.json deleted file mode 100644 index 39376ae73..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"arrows-out-simple.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-thin.imageset/Contents.json deleted file mode 100644 index 8a7724289..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-out-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out.imageset/Contents.json deleted file mode 100644 index 9e8391d86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-out.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-bold.imageset/Contents.json deleted file mode 100644 index fa2a91f8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-split-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-duotone.imageset/Contents.json deleted file mode 100644 index 5dab581b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"arrows-split-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-fill.imageset/Contents.json deleted file mode 100644 index 30ace4fc8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-split-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-light.imageset/Contents.json deleted file mode 100644 index cbc745afe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrows-split-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-thin.imageset/Contents.json deleted file mode 100644 index 105721df7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrows-split-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split.imageset/Contents.json deleted file mode 100644 index 947466b8a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-split.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-bold.imageset/Contents.json deleted file mode 100644 index ea852fc54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-vertical-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-duotone.imageset/Contents.json deleted file mode 100644 index a654074c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"arrows-vertical-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-fill.imageset/Contents.json deleted file mode 100644 index 6abd2b23b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"arrows-vertical-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-light.imageset/Contents.json deleted file mode 100644 index ddbac8502..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"arrows-vertical-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-thin.imageset/Contents.json deleted file mode 100644 index 505e57622..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"arrows-vertical-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical.imageset/Contents.json deleted file mode 100644 index 70eab4800..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"arrows-vertical.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-bold.imageset/Contents.json deleted file mode 100644 index 1e53dc4df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"article-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-duotone.imageset/Contents.json deleted file mode 100644 index 91c9e2387..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"article-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-fill.imageset/Contents.json deleted file mode 100644 index 064e63c69..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"article-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-light.imageset/Contents.json deleted file mode 100644 index 171c2e781..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"article-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-bold.imageset/Contents.json deleted file mode 100644 index 3a70e1879..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"article-medium-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-duotone.imageset/Contents.json deleted file mode 100644 index c87d29e9d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"article-medium-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-fill.imageset/Contents.json deleted file mode 100644 index d0f651711..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"article-medium-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-light.imageset/Contents.json deleted file mode 100644 index 6e96c463b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"article-medium-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-thin.imageset/Contents.json deleted file mode 100644 index c7dcf16c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"article-medium-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium.imageset/Contents.json deleted file mode 100644 index eb7dd5eb3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"article-medium.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-bold.imageset/Contents.json deleted file mode 100644 index a2a7e9fab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"article-ny-times-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-duotone.imageset/Contents.json deleted file mode 100644 index 4aaf3d124..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"article-ny-times-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-fill.imageset/Contents.json deleted file mode 100644 index a5ea3142d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"article-ny-times-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-light.imageset/Contents.json deleted file mode 100644 index 72bb853e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"article-ny-times-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-thin.imageset/Contents.json deleted file mode 100644 index 89a3bd482..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"article-ny-times-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times.imageset/Contents.json deleted file mode 100644 index 067688a34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"article-ny-times.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-thin.imageset/Contents.json deleted file mode 100644 index 590f58687..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"article-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article.imageset/Contents.json deleted file mode 100644 index b69a81ec7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"article.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-bold.imageset/Contents.json deleted file mode 100644 index 88472a623..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"asclepius-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-duotone.imageset/Contents.json deleted file mode 100644 index 2a31c04c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"asclepius-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-fill.imageset/Contents.json deleted file mode 100644 index f84e0f804..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"asclepius-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-light.imageset/Contents.json deleted file mode 100644 index a35f54046..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"asclepius-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-thin.imageset/Contents.json deleted file mode 100644 index c95e02073..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"asclepius-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius.imageset/Contents.json deleted file mode 100644 index 1e03a7c8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"asclepius.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-bold.imageset/Contents.json deleted file mode 100644 index c5e6abbe1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"asterisk-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-duotone.imageset/Contents.json deleted file mode 100644 index 8b29a0ae2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"asterisk-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-fill.imageset/Contents.json deleted file mode 100644 index b69dc3aa5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"asterisk-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-light.imageset/Contents.json deleted file mode 100644 index 6da1776f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"asterisk-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-bold.imageset/Contents.json deleted file mode 100644 index 28794552a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"asterisk-simple-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-duotone.imageset/Contents.json deleted file mode 100644 index 4aa9e903b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"asterisk-simple-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-fill.imageset/Contents.json deleted file mode 100644 index 58aead6f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"asterisk-simple-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-light.imageset/Contents.json deleted file mode 100644 index b30bf08bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"asterisk-simple-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-thin.imageset/Contents.json deleted file mode 100644 index 40040f4ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"asterisk-simple-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple.imageset/Contents.json deleted file mode 100644 index e037d82f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"asterisk-simple.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-thin.imageset/Contents.json deleted file mode 100644 index 94413a34a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"asterisk-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk.imageset/Contents.json deleted file mode 100644 index cf3cfb40c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"asterisk.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-bold.imageset/Contents.json deleted file mode 100644 index 1cc57ca1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"at-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-duotone.imageset/Contents.json deleted file mode 100644 index 6686ccef0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"at-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-fill.imageset/Contents.json deleted file mode 100644 index 7616a677e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"at-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-light.imageset/Contents.json deleted file mode 100644 index c63b625ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"at-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-thin.imageset/Contents.json deleted file mode 100644 index 0ba12ea2f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"at-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at.imageset/Contents.json deleted file mode 100644 index 56ae376b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"at.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-bold.imageset/Contents.json deleted file mode 100644 index 77007474b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"atom-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-duotone.imageset/Contents.json deleted file mode 100644 index 6d26f906d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"atom-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-fill.imageset/Contents.json deleted file mode 100644 index c8c444318..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"atom-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-light.imageset/Contents.json deleted file mode 100644 index f4a6bc80a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"atom-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-thin.imageset/Contents.json deleted file mode 100644 index d56a750e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"atom-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom.imageset/Contents.json deleted file mode 100644 index a4b169650..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"atom.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-bold.imageset/Contents.json deleted file mode 100644 index 931a2dfa4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"avocado-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-duotone.imageset/Contents.json deleted file mode 100644 index ad56de828..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"avocado-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-fill.imageset/Contents.json deleted file mode 100644 index 6d7486803..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"avocado-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-light.imageset/Contents.json deleted file mode 100644 index cdcc51403..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"avocado-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-thin.imageset/Contents.json deleted file mode 100644 index 45dca3583..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"avocado-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado.imageset/Contents.json deleted file mode 100644 index 69ed8cb59..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"avocado.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-bold.imageset/Contents.json deleted file mode 100644 index 215b35816..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"axe-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-duotone.imageset/Contents.json deleted file mode 100644 index fc002ecd7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"axe-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-fill.imageset/Contents.json deleted file mode 100644 index e65f6cd5b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"axe-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-light.imageset/Contents.json deleted file mode 100644 index 8674c2fef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"axe-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-thin.imageset/Contents.json deleted file mode 100644 index bd94df0c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"axe-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe.imageset/Contents.json deleted file mode 100644 index 81ad6ed09..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"axe.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-bold.imageset/Contents.json deleted file mode 100644 index 88e5277ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"baby-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-bold.imageset/Contents.json deleted file mode 100644 index 0c1ff6ca5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"baby-carriage-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-duotone.imageset/Contents.json deleted file mode 100644 index b80601f82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"baby-carriage-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-fill.imageset/Contents.json deleted file mode 100644 index 2496cb4a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"baby-carriage-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-light.imageset/Contents.json deleted file mode 100644 index 134ae44ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"baby-carriage-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-thin.imageset/Contents.json deleted file mode 100644 index 4a681a971..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"baby-carriage-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage.imageset/Contents.json deleted file mode 100644 index 098b48dab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"baby-carriage.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-duotone.imageset/Contents.json deleted file mode 100644 index bdd2708bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"baby-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-fill.imageset/Contents.json deleted file mode 100644 index 479c11532..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"baby-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-light.imageset/Contents.json deleted file mode 100644 index 12d760217..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"baby-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-thin.imageset/Contents.json deleted file mode 100644 index a0688b4a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"baby-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby.imageset/Contents.json deleted file mode 100644 index 2b398c6bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"baby.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-bold.imageset/Contents.json deleted file mode 100644 index 43d2b471a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"backpack-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-duotone.imageset/Contents.json deleted file mode 100644 index 17efc51ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"backpack-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-fill.imageset/Contents.json deleted file mode 100644 index 3bf0c3ff4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"backpack-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-light.imageset/Contents.json deleted file mode 100644 index 10517a277..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"backpack-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-thin.imageset/Contents.json deleted file mode 100644 index 7d89fea8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"backpack-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack.imageset/Contents.json deleted file mode 100644 index 4e16711cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"backpack.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-bold.imageset/Contents.json deleted file mode 100644 index 31011c2d6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"backspace-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-duotone.imageset/Contents.json deleted file mode 100644 index 09021197f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"backspace-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-fill.imageset/Contents.json deleted file mode 100644 index 3c39a11f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"backspace-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-light.imageset/Contents.json deleted file mode 100644 index 46d9cc3a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"backspace-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-thin.imageset/Contents.json deleted file mode 100644 index 25596dd95..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"backspace-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace.imageset/Contents.json deleted file mode 100644 index 64e5a04e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"backspace.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-bold.imageset/Contents.json deleted file mode 100644 index 21b9a781f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bag-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-duotone.imageset/Contents.json deleted file mode 100644 index cc63000e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bag-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-fill.imageset/Contents.json deleted file mode 100644 index 91abe7908..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bag-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-light.imageset/Contents.json deleted file mode 100644 index f3c42d46a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bag-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-bold.imageset/Contents.json deleted file mode 100644 index 12e0e28c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bag-simple-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-duotone.imageset/Contents.json deleted file mode 100644 index 702213a71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"bag-simple-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-fill.imageset/Contents.json deleted file mode 100644 index 80e4fdcb4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"bag-simple-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-light.imageset/Contents.json deleted file mode 100644 index 23d32f6b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bag-simple-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-thin.imageset/Contents.json deleted file mode 100644 index eabbe93a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"bag-simple-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple.imageset/Contents.json deleted file mode 100644 index 15c80fc68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"bag-simple.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-thin.imageset/Contents.json deleted file mode 100644 index eadda70ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bag-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag.imageset/Contents.json deleted file mode 100644 index 40f729f8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bag.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-bold.imageset/Contents.json deleted file mode 100644 index 6af528f8a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"balloon-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-duotone.imageset/Contents.json deleted file mode 100644 index 2417d6ce0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"balloon-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-fill.imageset/Contents.json deleted file mode 100644 index 6a6869e12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"balloon-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-light.imageset/Contents.json deleted file mode 100644 index 5aa7d1aff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"balloon-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-thin.imageset/Contents.json deleted file mode 100644 index 420b78985..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"balloon-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon.imageset/Contents.json deleted file mode 100644 index 8e864d155..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"balloon.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-bold.imageset/Contents.json deleted file mode 100644 index 4e50a14a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bandaids-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-duotone.imageset/Contents.json deleted file mode 100644 index 23c79ed34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bandaids-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-fill.imageset/Contents.json deleted file mode 100644 index f811cb545..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bandaids-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-light.imageset/Contents.json deleted file mode 100644 index 0a3f5c834..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"bandaids-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-thin.imageset/Contents.json deleted file mode 100644 index 5bca6ba3c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"bandaids-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids.imageset/Contents.json deleted file mode 100644 index 63ea97569..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bandaids.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-bold.imageset/Contents.json deleted file mode 100644 index e0d90d128..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bank-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-duotone.imageset/Contents.json deleted file mode 100644 index 858de8523..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bank-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-fill.imageset/Contents.json deleted file mode 100644 index f0e64a6a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bank-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-light.imageset/Contents.json deleted file mode 100644 index a17544c76..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bank-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-thin.imageset/Contents.json deleted file mode 100644 index 04fd489a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bank-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank.imageset/Contents.json deleted file mode 100644 index e11663e56..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bank.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-bold.imageset/Contents.json deleted file mode 100644 index 49e7b1c74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"barbell-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-duotone.imageset/Contents.json deleted file mode 100644 index a50d130a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"barbell-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-fill.imageset/Contents.json deleted file mode 100644 index 79b72b815..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"barbell-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-light.imageset/Contents.json deleted file mode 100644 index 8d11e5a77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"barbell-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-thin.imageset/Contents.json deleted file mode 100644 index aa685696a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"barbell-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell.imageset/Contents.json deleted file mode 100644 index f52d02849..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"barbell.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-bold.imageset/Contents.json deleted file mode 100644 index 943e8a8d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"barcode-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-duotone.imageset/Contents.json deleted file mode 100644 index b332099b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"barcode-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-fill.imageset/Contents.json deleted file mode 100644 index fbba87c16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"barcode-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-light.imageset/Contents.json deleted file mode 100644 index 52b9cf88b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"barcode-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-thin.imageset/Contents.json deleted file mode 100644 index a6e55c31f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"barcode-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode.imageset/Contents.json deleted file mode 100644 index ef3cbc764..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"barcode.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-bold.imageset/Contents.json deleted file mode 100644 index b78b05d94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"barn-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-duotone.imageset/Contents.json deleted file mode 100644 index 086e92370..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"barn-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-fill.imageset/Contents.json deleted file mode 100644 index dc1a7be78..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"barn-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-light.imageset/Contents.json deleted file mode 100644 index 64375e3dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"barn-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-thin.imageset/Contents.json deleted file mode 100644 index c2cef473b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"barn-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn.imageset/Contents.json deleted file mode 100644 index ec67b29d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"barn.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-bold.imageset/Contents.json deleted file mode 100644 index 935d24738..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"barricade-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-duotone.imageset/Contents.json deleted file mode 100644 index 479e537e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"barricade-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-fill.imageset/Contents.json deleted file mode 100644 index 2ec1c65b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"barricade-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-light.imageset/Contents.json deleted file mode 100644 index 300c948ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"barricade-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-thin.imageset/Contents.json deleted file mode 100644 index 5126ebb7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"barricade-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade.imageset/Contents.json deleted file mode 100644 index 1861cabea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"barricade.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-bold.imageset/Contents.json deleted file mode 100644 index e476c6411..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"baseball-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-bold.imageset/Contents.json deleted file mode 100644 index 76e087a8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"baseball-cap-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-duotone.imageset/Contents.json deleted file mode 100644 index b6d762518..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"baseball-cap-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-fill.imageset/Contents.json deleted file mode 100644 index ed798d4c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"baseball-cap-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-light.imageset/Contents.json deleted file mode 100644 index 2f5cd064d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"baseball-cap-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-thin.imageset/Contents.json deleted file mode 100644 index 818ca9ff7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"baseball-cap-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap.imageset/Contents.json deleted file mode 100644 index 23e814263..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"baseball-cap.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-duotone.imageset/Contents.json deleted file mode 100644 index 715ee9281..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"baseball-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-fill.imageset/Contents.json deleted file mode 100644 index 3cb6adacc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"baseball-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-bold.imageset/Contents.json deleted file mode 100644 index bf4f70e48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"baseball-helmet-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-duotone.imageset/Contents.json deleted file mode 100644 index 9ffe27f2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"baseball-helmet-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-fill.imageset/Contents.json deleted file mode 100644 index 14b5d3711..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"baseball-helmet-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-light.imageset/Contents.json deleted file mode 100644 index f56837845..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"baseball-helmet-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-thin.imageset/Contents.json deleted file mode 100644 index 23ebc7ef1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"baseball-helmet-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet.imageset/Contents.json deleted file mode 100644 index f0df3df22..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"baseball-helmet.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-light.imageset/Contents.json deleted file mode 100644 index b98821cf6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"baseball-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-thin.imageset/Contents.json deleted file mode 100644 index 61fa26c79..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"baseball-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball.imageset/Contents.json deleted file mode 100644 index 48006c306..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"baseball.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-bold.imageset/Contents.json deleted file mode 100644 index 16663d53c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"basket-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-duotone.imageset/Contents.json deleted file mode 100644 index 4b1b74a16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"basket-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-fill.imageset/Contents.json deleted file mode 100644 index 31fb4e752..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"basket-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-light.imageset/Contents.json deleted file mode 100644 index e83e43047..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"basket-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-thin.imageset/Contents.json deleted file mode 100644 index c6c4e34db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"basket-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket.imageset/Contents.json deleted file mode 100644 index 7d4f2c477..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"basket.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-bold.imageset/Contents.json deleted file mode 100644 index bab215c2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"basketball-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-duotone.imageset/Contents.json deleted file mode 100644 index 4bddc8c7a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"basketball-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-fill.imageset/Contents.json deleted file mode 100644 index 980b5183b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"basketball-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-light.imageset/Contents.json deleted file mode 100644 index 9ad47c159..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"basketball-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-thin.imageset/Contents.json deleted file mode 100644 index b465d391b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"basketball-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball.imageset/Contents.json deleted file mode 100644 index 008173d11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"basketball.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-bold.imageset/Contents.json deleted file mode 100644 index 7eea8c39a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bathtub-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-duotone.imageset/Contents.json deleted file mode 100644 index e37d64e3e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bathtub-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-fill.imageset/Contents.json deleted file mode 100644 index 8c2c4fd04..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bathtub-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-light.imageset/Contents.json deleted file mode 100644 index 57cc80d02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bathtub-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-thin.imageset/Contents.json deleted file mode 100644 index b352489a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bathtub-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub.imageset/Contents.json deleted file mode 100644 index a7911bfd3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bathtub.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-bold.imageset/Contents.json deleted file mode 100644 index 7f4a47dde..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"battery-charging-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-duotone.imageset/Contents.json deleted file mode 100644 index 4fa8b161a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"battery-charging-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-fill.imageset/Contents.json deleted file mode 100644 index a63e0c7ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-charging-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-light.imageset/Contents.json deleted file mode 100644 index 348d7668e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-charging-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-thin.imageset/Contents.json deleted file mode 100644 index b7c64e67c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"battery-charging-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-bold.imageset/Contents.json deleted file mode 100644 index e8157f4d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-charging-vertical-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-duotone.imageset/Contents.json deleted file mode 100644 index 35b2a4770..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-charging-vertical-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-fill.imageset/Contents.json deleted file mode 100644 index 783837dd4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"battery-charging-vertical-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-light.imageset/Contents.json deleted file mode 100644 index fdf30a426..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-charging-vertical-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-thin.imageset/Contents.json deleted file mode 100644 index 3f45b4844..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"battery-charging-vertical-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical.imageset/Contents.json deleted file mode 100644 index 10ff339ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-charging-vertical.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging.imageset/Contents.json deleted file mode 100644 index 180ac0a71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-charging.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-bold.imageset/Contents.json deleted file mode 100644 index db9c77e70..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"battery-empty-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-duotone.imageset/Contents.json deleted file mode 100644 index a6ee1b340..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"battery-empty-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-fill.imageset/Contents.json deleted file mode 100644 index 14af6b585..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"battery-empty-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-light.imageset/Contents.json deleted file mode 100644 index f50751a03..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-empty-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-thin.imageset/Contents.json deleted file mode 100644 index 6cab893f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-empty-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty.imageset/Contents.json deleted file mode 100644 index 7928d13ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-empty.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-bold.imageset/Contents.json deleted file mode 100644 index 24970ddbb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"battery-full-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-duotone.imageset/Contents.json deleted file mode 100644 index 7d86f1625..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"battery-full-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-fill.imageset/Contents.json deleted file mode 100644 index 6fc1b0ed6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-full-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-light.imageset/Contents.json deleted file mode 100644 index 25143ab8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-full-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-thin.imageset/Contents.json deleted file mode 100644 index d9cc84b3a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"battery-full-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full.imageset/Contents.json deleted file mode 100644 index e86096685..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-full.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-bold.imageset/Contents.json deleted file mode 100644 index aab69593a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"battery-high-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-duotone.imageset/Contents.json deleted file mode 100644 index 7d40d5529..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-high-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-fill.imageset/Contents.json deleted file mode 100644 index 47d84def0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-high-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-light.imageset/Contents.json deleted file mode 100644 index 162676539..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-high-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-thin.imageset/Contents.json deleted file mode 100644 index aab999f3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"battery-high-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high.imageset/Contents.json deleted file mode 100644 index bcef1550f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-high.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-bold.imageset/Contents.json deleted file mode 100644 index 8b672ceb5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"battery-low-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-duotone.imageset/Contents.json deleted file mode 100644 index 02eded80b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"battery-low-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-fill.imageset/Contents.json deleted file mode 100644 index a2da3a1d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"battery-low-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-light.imageset/Contents.json deleted file mode 100644 index f805720c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-low-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-thin.imageset/Contents.json deleted file mode 100644 index 81959751f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-low-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low.imageset/Contents.json deleted file mode 100644 index 45f2185f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"battery-low.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-bold.imageset/Contents.json deleted file mode 100644 index 6a7afdf07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"battery-medium-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-duotone.imageset/Contents.json deleted file mode 100644 index 8e0a46fd6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"battery-medium-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-fill.imageset/Contents.json deleted file mode 100644 index 64798819d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-medium-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-light.imageset/Contents.json deleted file mode 100644 index 16e4d8b68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"battery-medium-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-thin.imageset/Contents.json deleted file mode 100644 index caf8ea936..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-medium-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium.imageset/Contents.json deleted file mode 100644 index c16d3e297..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"battery-medium.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-bold.imageset/Contents.json deleted file mode 100644 index b31e325d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"battery-plus-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-duotone.imageset/Contents.json deleted file mode 100644 index 5a4a55d73..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-plus-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-fill.imageset/Contents.json deleted file mode 100644 index f99dcfc0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-plus-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-light.imageset/Contents.json deleted file mode 100644 index db7ea22ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"battery-plus-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-thin.imageset/Contents.json deleted file mode 100644 index b6c675a72..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-plus-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-bold.imageset/Contents.json deleted file mode 100644 index e0603dd61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-plus-vertical-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-duotone.imageset/Contents.json deleted file mode 100644 index b5109fca8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"battery-plus-vertical-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-fill.imageset/Contents.json deleted file mode 100644 index 5b4f8cdb7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-plus-vertical-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-light.imageset/Contents.json deleted file mode 100644 index a81b0b654..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"battery-plus-vertical-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-thin.imageset/Contents.json deleted file mode 100644 index 25f604087..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"battery-plus-vertical-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical.imageset/Contents.json deleted file mode 100644 index 58cbca14e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"battery-plus-vertical.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus.imageset/Contents.json deleted file mode 100644 index 722d0f3b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"battery-plus.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-bold.imageset/Contents.json deleted file mode 100644 index 2c224949e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"battery-vertical-empty-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-duotone.imageset/Contents.json deleted file mode 100644 index 95dbf5f2a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"battery-vertical-empty-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-fill.imageset/Contents.json deleted file mode 100644 index d00c9d168..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"battery-vertical-empty-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-light.imageset/Contents.json deleted file mode 100644 index dc91493c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-vertical-empty-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-thin.imageset/Contents.json deleted file mode 100644 index 8a6c73d11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"battery-vertical-empty-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty.imageset/Contents.json deleted file mode 100644 index e7291ed89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-vertical-empty.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-bold.imageset/Contents.json deleted file mode 100644 index 128c9bda7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-vertical-full-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-duotone.imageset/Contents.json deleted file mode 100644 index 5c694e8cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"battery-vertical-full-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-fill.imageset/Contents.json deleted file mode 100644 index 16a4602d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-vertical-full-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-light.imageset/Contents.json deleted file mode 100644 index 0d321d72c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-vertical-full-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-thin.imageset/Contents.json deleted file mode 100644 index 80969d37a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"battery-vertical-full-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full.imageset/Contents.json deleted file mode 100644 index 483b5233a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"battery-vertical-full.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-bold.imageset/Contents.json deleted file mode 100644 index 1c33c9a78..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"battery-vertical-high-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-duotone.imageset/Contents.json deleted file mode 100644 index 2f69a7f74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-vertical-high-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-fill.imageset/Contents.json deleted file mode 100644 index d7c617d7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"battery-vertical-high-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-light.imageset/Contents.json deleted file mode 100644 index 1137d375f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-vertical-high-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-thin.imageset/Contents.json deleted file mode 100644 index 41c22cf32..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-vertical-high-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high.imageset/Contents.json deleted file mode 100644 index b35be5311..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-vertical-high.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-bold.imageset/Contents.json deleted file mode 100644 index 353899f4b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"battery-vertical-low-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-duotone.imageset/Contents.json deleted file mode 100644 index a247c5114..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-vertical-low-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-fill.imageset/Contents.json deleted file mode 100644 index 09c7bd330..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"battery-vertical-low-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-light.imageset/Contents.json deleted file mode 100644 index 993988fa5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-vertical-low-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-thin.imageset/Contents.json deleted file mode 100644 index be59110c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"battery-vertical-low-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low.imageset/Contents.json deleted file mode 100644 index a6d718a52..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"battery-vertical-low.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-bold.imageset/Contents.json deleted file mode 100644 index 661bc0ee4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-vertical-medium-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-duotone.imageset/Contents.json deleted file mode 100644 index 29afde5c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"battery-vertical-medium-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-fill.imageset/Contents.json deleted file mode 100644 index 0440721ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"battery-vertical-medium-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-light.imageset/Contents.json deleted file mode 100644 index 22f5ca330..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-vertical-medium-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-thin.imageset/Contents.json deleted file mode 100644 index 96d3fec0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-vertical-medium-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium.imageset/Contents.json deleted file mode 100644 index 3be114cb9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"battery-vertical-medium.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-bold.imageset/Contents.json deleted file mode 100644 index 06f132722..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"battery-warning-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-duotone.imageset/Contents.json deleted file mode 100644 index 4f5d1e873..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-warning-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-fill.imageset/Contents.json deleted file mode 100644 index f35b726bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-warning-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-light.imageset/Contents.json deleted file mode 100644 index 3da8f114d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"battery-warning-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-thin.imageset/Contents.json deleted file mode 100644 index 881304b3a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"battery-warning-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-bold.imageset/Contents.json deleted file mode 100644 index 6b86b4602..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"battery-warning-vertical-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-duotone.imageset/Contents.json deleted file mode 100644 index 57385ebcf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"battery-warning-vertical-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-fill.imageset/Contents.json deleted file mode 100644 index b762ec04c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"battery-warning-vertical-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-light.imageset/Contents.json deleted file mode 100644 index 832aa2443..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"battery-warning-vertical-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-thin.imageset/Contents.json deleted file mode 100644 index 3069f4e55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"battery-warning-vertical-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical.imageset/Contents.json deleted file mode 100644 index e1094a4b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-warning-vertical.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning.imageset/Contents.json deleted file mode 100644 index 3436e4490..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"battery-warning.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-bold.imageset/Contents.json deleted file mode 100644 index c2d5612c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"beach-ball-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-duotone.imageset/Contents.json deleted file mode 100644 index fbbc1741e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"beach-ball-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-fill.imageset/Contents.json deleted file mode 100644 index 7f88e79db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"beach-ball-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-light.imageset/Contents.json deleted file mode 100644 index dc7d5e415..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"beach-ball-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-thin.imageset/Contents.json deleted file mode 100644 index 269721a8c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"beach-ball-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball.imageset/Contents.json deleted file mode 100644 index f56df77e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"beach-ball.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-bold.imageset/Contents.json deleted file mode 100644 index 8803fc18b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"beanie-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-duotone.imageset/Contents.json deleted file mode 100644 index 902a03fe3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"beanie-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-fill.imageset/Contents.json deleted file mode 100644 index ded26815a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"beanie-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-light.imageset/Contents.json deleted file mode 100644 index e7adc5d1b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"beanie-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-thin.imageset/Contents.json deleted file mode 100644 index 0b34488d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"beanie-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie.imageset/Contents.json deleted file mode 100644 index a95e5bd57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"beanie.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-bold.imageset/Contents.json deleted file mode 100644 index 724ec42d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bed-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-duotone.imageset/Contents.json deleted file mode 100644 index d6bf46c1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"bed-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-fill.imageset/Contents.json deleted file mode 100644 index 3d6e28b3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bed-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-light.imageset/Contents.json deleted file mode 100644 index e1054cee8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"bed-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-thin.imageset/Contents.json deleted file mode 100644 index 454ff2856..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bed-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed.imageset/Contents.json deleted file mode 100644 index d7e680174..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bed.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-bold.imageset/Contents.json deleted file mode 100644 index 348b4ca58..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"beer-bottle-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-duotone.imageset/Contents.json deleted file mode 100644 index efda91bd8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"beer-bottle-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-fill.imageset/Contents.json deleted file mode 100644 index 6e50d8085..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"beer-bottle-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-light.imageset/Contents.json deleted file mode 100644 index 56af1af43..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"beer-bottle-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-thin.imageset/Contents.json deleted file mode 100644 index df44855f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"beer-bottle-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle.imageset/Contents.json deleted file mode 100644 index a1ecfd3cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"beer-bottle.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-bold.imageset/Contents.json deleted file mode 100644 index 37d4ed4f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"beer-stein-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-duotone.imageset/Contents.json deleted file mode 100644 index 56f9de75f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"beer-stein-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-fill.imageset/Contents.json deleted file mode 100644 index b5ef0add0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"beer-stein-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-light.imageset/Contents.json deleted file mode 100644 index aae7e55f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"beer-stein-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-thin.imageset/Contents.json deleted file mode 100644 index bd887ea06..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"beer-stein-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein.imageset/Contents.json deleted file mode 100644 index c7cdcc068..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"beer-stein.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-bold.imageset/Contents.json deleted file mode 100644 index 817411f3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"behance-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-duotone.imageset/Contents.json deleted file mode 100644 index 25a99d1e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"behance-logo-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-fill.imageset/Contents.json deleted file mode 100644 index 821d91890..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"behance-logo-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-light.imageset/Contents.json deleted file mode 100644 index 94e46b47e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"behance-logo-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-thin.imageset/Contents.json deleted file mode 100644 index d11f335a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"behance-logo-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo.imageset/Contents.json deleted file mode 100644 index e123b6db0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"behance-logo.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-bold.imageset/Contents.json deleted file mode 100644 index 1b37a35cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bell-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-duotone.imageset/Contents.json deleted file mode 100644 index a8d9de68e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bell-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-fill.imageset/Contents.json deleted file mode 100644 index b03d8259e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bell-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-light.imageset/Contents.json deleted file mode 100644 index a24f5427d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bell-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-bold.imageset/Contents.json deleted file mode 100644 index 07cdbfcf6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bell-ringing-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-duotone.imageset/Contents.json deleted file mode 100644 index 515f6964f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bell-ringing-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-fill.imageset/Contents.json deleted file mode 100644 index 564068b19..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bell-ringing-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-light.imageset/Contents.json deleted file mode 100644 index 52734ced0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bell-ringing-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-thin.imageset/Contents.json deleted file mode 100644 index 0e674c292..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bell-ringing-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing.imageset/Contents.json deleted file mode 100644 index cd5f868a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"bell-ringing.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-bold.imageset/Contents.json deleted file mode 100644 index d009c029b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bell-simple-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-duotone.imageset/Contents.json deleted file mode 100644 index e65e17d5e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bell-simple-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-fill.imageset/Contents.json deleted file mode 100644 index 9a391ab12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bell-simple-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-light.imageset/Contents.json deleted file mode 100644 index 1a2385f6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bell-simple-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-bold.imageset/Contents.json deleted file mode 100644 index 214dcd0c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bell-simple-ringing-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-duotone.imageset/Contents.json deleted file mode 100644 index 40641103b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bell-simple-ringing-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-fill.imageset/Contents.json deleted file mode 100644 index 4015aff48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bell-simple-ringing-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-light.imageset/Contents.json deleted file mode 100644 index 805251fb8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bell-simple-ringing-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-thin.imageset/Contents.json deleted file mode 100644 index 0225e0b0e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bell-simple-ringing-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing.imageset/Contents.json deleted file mode 100644 index 27a16f677..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bell-simple-ringing.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-bold.imageset/Contents.json deleted file mode 100644 index c9d1de6f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bell-simple-slash-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-duotone.imageset/Contents.json deleted file mode 100644 index e16956c2f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"bell-simple-slash-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-fill.imageset/Contents.json deleted file mode 100644 index ef88dd2b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bell-simple-slash-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-light.imageset/Contents.json deleted file mode 100644 index e190bf2e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"bell-simple-slash-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-thin.imageset/Contents.json deleted file mode 100644 index fef424a8e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bell-simple-slash-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash.imageset/Contents.json deleted file mode 100644 index 72c7ab535..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bell-simple-slash.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-thin.imageset/Contents.json deleted file mode 100644 index 20d53c24b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bell-simple-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-bold.imageset/Contents.json deleted file mode 100644 index 21b32dcd0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bell-simple-z-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-duotone.imageset/Contents.json deleted file mode 100644 index 303e35a0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bell-simple-z-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-fill.imageset/Contents.json deleted file mode 100644 index 17aefb735..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bell-simple-z-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-light.imageset/Contents.json deleted file mode 100644 index cb869e1d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bell-simple-z-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-thin.imageset/Contents.json deleted file mode 100644 index f1a3e5a54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bell-simple-z-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z.imageset/Contents.json deleted file mode 100644 index 744c72793..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bell-simple-z.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple.imageset/Contents.json deleted file mode 100644 index 20a2f573a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bell-simple.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-bold.imageset/Contents.json deleted file mode 100644 index c99a8e538..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bell-slash-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-duotone.imageset/Contents.json deleted file mode 100644 index a05dba3b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"bell-slash-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-fill.imageset/Contents.json deleted file mode 100644 index 095bb0144..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bell-slash-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-light.imageset/Contents.json deleted file mode 100644 index 3581a7709..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bell-slash-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-thin.imageset/Contents.json deleted file mode 100644 index 612a0e0e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bell-slash-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash.imageset/Contents.json deleted file mode 100644 index e39526a51..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bell-slash.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-thin.imageset/Contents.json deleted file mode 100644 index 8b3a8e52a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bell-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-bold.imageset/Contents.json deleted file mode 100644 index c7b332dbb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bell-z-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-duotone.imageset/Contents.json deleted file mode 100644 index d8138eca2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bell-z-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-fill.imageset/Contents.json deleted file mode 100644 index b6f01efbf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bell-z-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-light.imageset/Contents.json deleted file mode 100644 index 3c3be8fe7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"bell-z-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-thin.imageset/Contents.json deleted file mode 100644 index 7231fa64f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bell-z-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z.imageset/Contents.json deleted file mode 100644 index 6f00dd6b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bell-z.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell.imageset/Contents.json deleted file mode 100644 index 1aebdd438..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bell.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-bold.imageset/Contents.json deleted file mode 100644 index df94630a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"belt-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-duotone.imageset/Contents.json deleted file mode 100644 index 936383e56..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"belt-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-fill.imageset/Contents.json deleted file mode 100644 index efbd198cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"belt-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-light.imageset/Contents.json deleted file mode 100644 index 24a017ab7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"belt-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-thin.imageset/Contents.json deleted file mode 100644 index ca92c2bc0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"belt-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt.imageset/Contents.json deleted file mode 100644 index 6cb57bbfb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"belt.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-bold.imageset/Contents.json deleted file mode 100644 index dbee834d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bezier-curve-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-duotone.imageset/Contents.json deleted file mode 100644 index ff073fb55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"bezier-curve-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-fill.imageset/Contents.json deleted file mode 100644 index 65394708e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"bezier-curve-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-light.imageset/Contents.json deleted file mode 100644 index 02921cda7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bezier-curve-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-thin.imageset/Contents.json deleted file mode 100644 index bbb6a0cab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"bezier-curve-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve.imageset/Contents.json deleted file mode 100644 index 21a5818dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bezier-curve.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-bold.imageset/Contents.json deleted file mode 100644 index a1ab70bc0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bicycle-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-duotone.imageset/Contents.json deleted file mode 100644 index 8230c83c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"bicycle-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-fill.imageset/Contents.json deleted file mode 100644 index ea83827a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bicycle-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-light.imageset/Contents.json deleted file mode 100644 index a13a51f82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"bicycle-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-thin.imageset/Contents.json deleted file mode 100644 index ed4b24997..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bicycle-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle.imageset/Contents.json deleted file mode 100644 index f8e4c120a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bicycle.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-bold.imageset/Contents.json deleted file mode 100644 index 742f96d1b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"binary-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-duotone.imageset/Contents.json deleted file mode 100644 index 256bb606c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"binary-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-fill.imageset/Contents.json deleted file mode 100644 index 4113eba1e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"binary-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-light.imageset/Contents.json deleted file mode 100644 index d1f77b156..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"binary-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-thin.imageset/Contents.json deleted file mode 100644 index 832f62d6a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"binary-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary.imageset/Contents.json deleted file mode 100644 index efee3bcd6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"binary.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-bold.imageset/Contents.json deleted file mode 100644 index f59a90c29..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"binoculars-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-duotone.imageset/Contents.json deleted file mode 100644 index ad0f18a7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"binoculars-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-fill.imageset/Contents.json deleted file mode 100644 index a0348cce7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"binoculars-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-light.imageset/Contents.json deleted file mode 100644 index a3b3bef49..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"binoculars-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-thin.imageset/Contents.json deleted file mode 100644 index 8da45c99e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"binoculars-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars.imageset/Contents.json deleted file mode 100644 index 78e6d8939..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"binoculars.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-bold.imageset/Contents.json deleted file mode 100644 index 85c1f90b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"biohazard-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-duotone.imageset/Contents.json deleted file mode 100644 index 13c78fc7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"biohazard-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-fill.imageset/Contents.json deleted file mode 100644 index 8bb909cf8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"biohazard-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-light.imageset/Contents.json deleted file mode 100644 index 19f8ff68f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"biohazard-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-thin.imageset/Contents.json deleted file mode 100644 index 97deb00e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"biohazard-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard.imageset/Contents.json deleted file mode 100644 index cbce44485..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"biohazard.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-bold.imageset/Contents.json deleted file mode 100644 index 0a2719d37..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"bird-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-duotone.imageset/Contents.json deleted file mode 100644 index ac358bb46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bird-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-fill.imageset/Contents.json deleted file mode 100644 index 9d55f2286..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bird-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-light.imageset/Contents.json deleted file mode 100644 index 2e0d3c088..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bird-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-thin.imageset/Contents.json deleted file mode 100644 index 9fd91c74e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"bird-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird.imageset/Contents.json deleted file mode 100644 index 9b16e7d03..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bird.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-bold.imageset/Contents.json deleted file mode 100644 index 7f5f36d70..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"blueprint-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-duotone.imageset/Contents.json deleted file mode 100644 index 210cfe4b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"blueprint-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-fill.imageset/Contents.json deleted file mode 100644 index 21c26a0ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"blueprint-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-light.imageset/Contents.json deleted file mode 100644 index b3729a119..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"blueprint-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-thin.imageset/Contents.json deleted file mode 100644 index 1c8377992..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"blueprint-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint.imageset/Contents.json deleted file mode 100644 index 552d7c055..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"blueprint.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-bold.imageset/Contents.json deleted file mode 100644 index 719a2545e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bluetooth-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-bold.imageset/Contents.json deleted file mode 100644 index 26fccc3bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bluetooth-connected-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-duotone.imageset/Contents.json deleted file mode 100644 index 316db77ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bluetooth-connected-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-fill.imageset/Contents.json deleted file mode 100644 index 70717bf54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bluetooth-connected-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-light.imageset/Contents.json deleted file mode 100644 index 802d7130b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"bluetooth-connected-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-thin.imageset/Contents.json deleted file mode 100644 index 4dec1dd31..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bluetooth-connected-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected.imageset/Contents.json deleted file mode 100644 index 5d2a06798..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bluetooth-connected.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-duotone.imageset/Contents.json deleted file mode 100644 index 077be140e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bluetooth-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-fill.imageset/Contents.json deleted file mode 100644 index a1ea53e63..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bluetooth-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-light.imageset/Contents.json deleted file mode 100644 index 4e03844bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bluetooth-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-bold.imageset/Contents.json deleted file mode 100644 index d4e915c28..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bluetooth-slash-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-duotone.imageset/Contents.json deleted file mode 100644 index c74a2263d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bluetooth-slash-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-fill.imageset/Contents.json deleted file mode 100644 index 4c0eff731..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bluetooth-slash-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-light.imageset/Contents.json deleted file mode 100644 index 2f5cc41f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bluetooth-slash-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-thin.imageset/Contents.json deleted file mode 100644 index 0b540428f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bluetooth-slash-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash.imageset/Contents.json deleted file mode 100644 index 0c9a1ffd5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bluetooth-slash.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-thin.imageset/Contents.json deleted file mode 100644 index 1b0f5381d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bluetooth-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-bold.imageset/Contents.json deleted file mode 100644 index 44bd9ac0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bluetooth-x-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-duotone.imageset/Contents.json deleted file mode 100644 index 02bc22c50..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"bluetooth-x-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-fill.imageset/Contents.json deleted file mode 100644 index b92e391ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"bluetooth-x-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-light.imageset/Contents.json deleted file mode 100644 index 6ba319a7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"bluetooth-x-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-thin.imageset/Contents.json deleted file mode 100644 index d37dbb13e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"bluetooth-x-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x.imageset/Contents.json deleted file mode 100644 index d9d686b95..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bluetooth-x.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth.imageset/Contents.json deleted file mode 100644 index e8cd9f588..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"bluetooth.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-bold.imageset/Contents.json deleted file mode 100644 index 214f29adf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"boat-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-duotone.imageset/Contents.json deleted file mode 100644 index 721dfbd5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"boat-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-fill.imageset/Contents.json deleted file mode 100644 index fb7abf74f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"boat-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-light.imageset/Contents.json deleted file mode 100644 index 1fa001fed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"boat-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-thin.imageset/Contents.json deleted file mode 100644 index a5b71f936..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"boat-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat.imageset/Contents.json deleted file mode 100644 index f98da02f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"boat.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-bold.imageset/Contents.json deleted file mode 100644 index 654837868..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bomb-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-duotone.imageset/Contents.json deleted file mode 100644 index 7a04f49eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bomb-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-fill.imageset/Contents.json deleted file mode 100644 index 079bf5fe7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bomb-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-light.imageset/Contents.json deleted file mode 100644 index 036dd109a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bomb-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-thin.imageset/Contents.json deleted file mode 100644 index 912c29e4c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bomb-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb.imageset/Contents.json deleted file mode 100644 index 3446ffd0e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bomb.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-bold.imageset/Contents.json deleted file mode 100644 index 286cbf58a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bone-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-duotone.imageset/Contents.json deleted file mode 100644 index 3f50800c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bone-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-fill.imageset/Contents.json deleted file mode 100644 index bb8594323..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bone-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-light.imageset/Contents.json deleted file mode 100644 index 1697658c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bone-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-thin.imageset/Contents.json deleted file mode 100644 index 583199b73..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bone-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone.imageset/Contents.json deleted file mode 100644 index ace5cc0a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bold.imageset/Contents.json deleted file mode 100644 index 59e69eb0e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"book-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-bold.imageset/Contents.json deleted file mode 100644 index bc73ebed0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"book-bookmark-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-duotone.imageset/Contents.json deleted file mode 100644 index 560664daf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"book-bookmark-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-fill.imageset/Contents.json deleted file mode 100644 index 46626a378..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"book-bookmark-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-light.imageset/Contents.json deleted file mode 100644 index 7e31d1f69..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"book-bookmark-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-thin.imageset/Contents.json deleted file mode 100644 index c2f5d191a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"book-bookmark-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark.imageset/Contents.json deleted file mode 100644 index e42585803..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"book-bookmark.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-duotone.imageset/Contents.json deleted file mode 100644 index 2d7c0f36a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"book-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-fill.imageset/Contents.json deleted file mode 100644 index aeff27588..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"book-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-light.imageset/Contents.json deleted file mode 100644 index 7c5bed243..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"book-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-bold.imageset/Contents.json deleted file mode 100644 index f3ce79823..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"book-open-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-duotone.imageset/Contents.json deleted file mode 100644 index cd8c1ba02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"book-open-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-fill.imageset/Contents.json deleted file mode 100644 index b762b21ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"book-open-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-light.imageset/Contents.json deleted file mode 100644 index 07a6d48c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"book-open-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-bold.imageset/Contents.json deleted file mode 100644 index f947d4fef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"book-open-text-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-duotone.imageset/Contents.json deleted file mode 100644 index 68ecf795c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"book-open-text-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-fill.imageset/Contents.json deleted file mode 100644 index 538b222f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"book-open-text-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-light.imageset/Contents.json deleted file mode 100644 index f151d66cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"book-open-text-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-thin.imageset/Contents.json deleted file mode 100644 index 88458d5d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"book-open-text-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text.imageset/Contents.json deleted file mode 100644 index e0d1aa267..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"book-open-text.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-thin.imageset/Contents.json deleted file mode 100644 index 56a70e7f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"book-open-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-bold.imageset/Contents.json deleted file mode 100644 index d1b607cb5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"book-open-user-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-duotone.imageset/Contents.json deleted file mode 100644 index 223c2c2c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"book-open-user-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-fill.imageset/Contents.json deleted file mode 100644 index 6d402ab1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"book-open-user-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-light.imageset/Contents.json deleted file mode 100644 index 432764b9d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"book-open-user-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-thin.imageset/Contents.json deleted file mode 100644 index 0313f44df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"book-open-user-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user.imageset/Contents.json deleted file mode 100644 index 15c64eda7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"book-open-user.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open.imageset/Contents.json deleted file mode 100644 index dbe3a81d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"book-open.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-thin.imageset/Contents.json deleted file mode 100644 index dc5511ad9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"book-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book.imageset/Contents.json deleted file mode 100644 index 3ebbb3fdf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"book.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-bold.imageset/Contents.json deleted file mode 100644 index d7c4af941..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bookmark-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-duotone.imageset/Contents.json deleted file mode 100644 index d1a722798..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bookmark-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-fill.imageset/Contents.json deleted file mode 100644 index c7a27f7f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"bookmark-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-light.imageset/Contents.json deleted file mode 100644 index 10d654bed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bookmark-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-bold.imageset/Contents.json deleted file mode 100644 index b5d49faa8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bookmark-simple-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-duotone.imageset/Contents.json deleted file mode 100644 index d67a8855f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bookmark-simple-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-fill.imageset/Contents.json deleted file mode 100644 index a175a104d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bookmark-simple-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-light.imageset/Contents.json deleted file mode 100644 index 30869e21a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bookmark-simple-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-thin.imageset/Contents.json deleted file mode 100644 index ac8a5152d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bookmark-simple-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple.imageset/Contents.json deleted file mode 100644 index 106199536..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"bookmark-simple.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-thin.imageset/Contents.json deleted file mode 100644 index 66415241e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bookmark-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark.imageset/Contents.json deleted file mode 100644 index 9e6140299..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bookmark.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-bold.imageset/Contents.json deleted file mode 100644 index 8da14567c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bookmarks-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-duotone.imageset/Contents.json deleted file mode 100644 index 8125ed7a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"bookmarks-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-fill.imageset/Contents.json deleted file mode 100644 index 3e0cc6051..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bookmarks-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-light.imageset/Contents.json deleted file mode 100644 index b9b7e98d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"bookmarks-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-bold.imageset/Contents.json deleted file mode 100644 index aa33f779e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bookmarks-simple-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-duotone.imageset/Contents.json deleted file mode 100644 index 4ada8d9e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bookmarks-simple-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-fill.imageset/Contents.json deleted file mode 100644 index 84bc85017..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bookmarks-simple-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-light.imageset/Contents.json deleted file mode 100644 index 065b4ae1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"bookmarks-simple-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-thin.imageset/Contents.json deleted file mode 100644 index b470fa5e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bookmarks-simple-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple.imageset/Contents.json deleted file mode 100644 index c7eab5649..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bookmarks-simple.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-thin.imageset/Contents.json deleted file mode 100644 index 7a43a74e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bookmarks-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks.imageset/Contents.json deleted file mode 100644 index 123e0573d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bookmarks.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-bold.imageset/Contents.json deleted file mode 100644 index e4a82bc3e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"books-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-duotone.imageset/Contents.json deleted file mode 100644 index f893de903..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"books-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-fill.imageset/Contents.json deleted file mode 100644 index afdadea66..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"books-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-light.imageset/Contents.json deleted file mode 100644 index 044cd18ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"books-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-thin.imageset/Contents.json deleted file mode 100644 index 2795b2850..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"books-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books.imageset/Contents.json deleted file mode 100644 index 741e10e7a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"books.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-bold.imageset/Contents.json deleted file mode 100644 index bc5331539..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"boot-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-duotone.imageset/Contents.json deleted file mode 100644 index 086756ce4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"boot-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-fill.imageset/Contents.json deleted file mode 100644 index c788f2875..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"boot-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-light.imageset/Contents.json deleted file mode 100644 index 45ab96132..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"boot-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-thin.imageset/Contents.json deleted file mode 100644 index eeb767679..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"boot-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot.imageset/Contents.json deleted file mode 100644 index 6b3aa9d00..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"boot.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-bold.imageset/Contents.json deleted file mode 100644 index a30556932..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"boules-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-duotone.imageset/Contents.json deleted file mode 100644 index d341ea078..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"boules-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-fill.imageset/Contents.json deleted file mode 100644 index fed49bfde..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"boules-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-light.imageset/Contents.json deleted file mode 100644 index c00d12fb9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"boules-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-thin.imageset/Contents.json deleted file mode 100644 index 8c0758d1a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"boules-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules.imageset/Contents.json deleted file mode 100644 index 73963e891..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"boules.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-bold.imageset/Contents.json deleted file mode 100644 index fe38c0200..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bounding-box-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-duotone.imageset/Contents.json deleted file mode 100644 index ba93c2680..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bounding-box-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-fill.imageset/Contents.json deleted file mode 100644 index 8385f0cb2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"bounding-box-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-light.imageset/Contents.json deleted file mode 100644 index 4aa7e2438..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bounding-box-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-thin.imageset/Contents.json deleted file mode 100644 index 30766b836..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"bounding-box-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box.imageset/Contents.json deleted file mode 100644 index 671da2b6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bounding-box.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-bold.imageset/Contents.json deleted file mode 100644 index e1b09224b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bowl-food-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-duotone.imageset/Contents.json deleted file mode 100644 index a060b65a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bowl-food-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-fill.imageset/Contents.json deleted file mode 100644 index 520612b94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bowl-food-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-light.imageset/Contents.json deleted file mode 100644 index 04bf27b26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bowl-food-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-thin.imageset/Contents.json deleted file mode 100644 index 6f8d2d938..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bowl-food-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food.imageset/Contents.json deleted file mode 100644 index bc7f44a29..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bowl-food.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-bold.imageset/Contents.json deleted file mode 100644 index c0e012803..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bowl-steam-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-duotone.imageset/Contents.json deleted file mode 100644 index 8d481fcaf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"bowl-steam-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-fill.imageset/Contents.json deleted file mode 100644 index 40d19b0f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bowl-steam-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-light.imageset/Contents.json deleted file mode 100644 index e17dcfec5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"bowl-steam-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-thin.imageset/Contents.json deleted file mode 100644 index 60170f91a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bowl-steam-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam.imageset/Contents.json deleted file mode 100644 index 6db83b808..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"bowl-steam.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-bold.imageset/Contents.json deleted file mode 100644 index ffe65c712..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"bowling-ball-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-duotone.imageset/Contents.json deleted file mode 100644 index 916922e3f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bowling-ball-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-fill.imageset/Contents.json deleted file mode 100644 index 6d2e3a4a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bowling-ball-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-light.imageset/Contents.json deleted file mode 100644 index b06ede795..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bowling-ball-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-thin.imageset/Contents.json deleted file mode 100644 index 4b414295b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bowling-ball-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball.imageset/Contents.json deleted file mode 100644 index a8ac69f40..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bowling-ball.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-bold.imageset/Contents.json deleted file mode 100644 index 541978326..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"box-arrow-down-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-bold.imageset/box-arrow-down-bold.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-bold.imageset/box-arrow-down-bold.svg deleted file mode 100644 index e92f19da3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-bold.imageset/box-arrow-down-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-duotone.imageset/Contents.json deleted file mode 100644 index e929d8052..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"box-arrow-down-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-duotone.imageset/box-arrow-down-duotone.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-duotone.imageset/box-arrow-down-duotone.svg deleted file mode 100644 index 9aa8245d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-duotone.imageset/box-arrow-down-duotone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-fill.imageset/Contents.json deleted file mode 100644 index 6a44d1444..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"box-arrow-down-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-fill.imageset/box-arrow-down-fill.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-fill.imageset/box-arrow-down-fill.svg deleted file mode 100644 index 9ea786cc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-fill.imageset/box-arrow-down-fill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-light.imageset/Contents.json deleted file mode 100644 index 34f09b9e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"box-arrow-down-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-light.imageset/box-arrow-down-light.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-light.imageset/box-arrow-down-light.svg deleted file mode 100644 index 28ee865a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-light.imageset/box-arrow-down-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-thin.imageset/Contents.json deleted file mode 100644 index e1a9ff348..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"box-arrow-down-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-thin.imageset/box-arrow-down-thin.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-thin.imageset/box-arrow-down-thin.svg deleted file mode 100644 index 85020bbef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down-thin.imageset/box-arrow-down-thin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down.imageset/Contents.json deleted file mode 100644 index ec2d5d48e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"box-arrow-down.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-bold.imageset/Contents.json deleted file mode 100644 index ed09e6e22..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"box-arrow-up-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-duotone.imageset/Contents.json deleted file mode 100644 index 7d509beca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"box-arrow-up-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-fill.imageset/Contents.json deleted file mode 100644 index 0d1df5a7c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"box-arrow-up-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-light.imageset/Contents.json deleted file mode 100644 index 1cc7a78fa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"box-arrow-up-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-thin.imageset/Contents.json deleted file mode 100644 index 67a7c1293..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"box-arrow-up-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up.imageset/Contents.json deleted file mode 100644 index 25e236ac9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"box-arrow-up.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-bold.imageset/Contents.json deleted file mode 100644 index 68d0a78e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"boxing-glove-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-duotone.imageset/Contents.json deleted file mode 100644 index 3096754cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"boxing-glove-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-fill.imageset/Contents.json deleted file mode 100644 index f18637765..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"boxing-glove-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-light.imageset/Contents.json deleted file mode 100644 index 74357a7de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"boxing-glove-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-thin.imageset/Contents.json deleted file mode 100644 index 0df643d85..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"boxing-glove-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove.imageset/Contents.json deleted file mode 100644 index c3471d5c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"boxing-glove.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-bold.imageset/Contents.json deleted file mode 100644 index fb4f624f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"brackets-angle-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-duotone.imageset/Contents.json deleted file mode 100644 index 2fb3f40a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"brackets-angle-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-fill.imageset/Contents.json deleted file mode 100644 index 2197af5f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"brackets-angle-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-light.imageset/Contents.json deleted file mode 100644 index 34e13d790..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"brackets-angle-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-thin.imageset/Contents.json deleted file mode 100644 index d1cf6e858..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"brackets-angle-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle.imageset/Contents.json deleted file mode 100644 index 461701542..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"brackets-angle.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-bold.imageset/Contents.json deleted file mode 100644 index 5e6637d02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"brackets-curly-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-duotone.imageset/Contents.json deleted file mode 100644 index dd7d2d59c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"brackets-curly-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-fill.imageset/Contents.json deleted file mode 100644 index 273d42d09..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"brackets-curly-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-light.imageset/Contents.json deleted file mode 100644 index 311045230..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"brackets-curly-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-thin.imageset/Contents.json deleted file mode 100644 index b5f986eeb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"brackets-curly-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly.imageset/Contents.json deleted file mode 100644 index 73fe79f25..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"brackets-curly.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-bold.imageset/Contents.json deleted file mode 100644 index 1f09fb25f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"brackets-round-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-duotone.imageset/Contents.json deleted file mode 100644 index 066c43d2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"brackets-round-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-fill.imageset/Contents.json deleted file mode 100644 index 389e28b9f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"brackets-round-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-light.imageset/Contents.json deleted file mode 100644 index 1ca994dd9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"brackets-round-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-thin.imageset/Contents.json deleted file mode 100644 index da6ac118b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"brackets-round-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round.imageset/Contents.json deleted file mode 100644 index 536b6c7d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"brackets-round.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-bold.imageset/Contents.json deleted file mode 100644 index 31958445a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"brackets-square-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-duotone.imageset/Contents.json deleted file mode 100644 index a4966ec8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"brackets-square-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-fill.imageset/Contents.json deleted file mode 100644 index 384dddf0f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"brackets-square-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-light.imageset/Contents.json deleted file mode 100644 index f6e90c9cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"brackets-square-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-thin.imageset/Contents.json deleted file mode 100644 index 1aa8a7fc7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"brackets-square-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square.imageset/Contents.json deleted file mode 100644 index 1188c62d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"brackets-square.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-bold.imageset/Contents.json deleted file mode 100644 index eb497f8be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"brain-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-duotone.imageset/Contents.json deleted file mode 100644 index 936d520a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"brain-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-fill.imageset/Contents.json deleted file mode 100644 index 73fbf23a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"brain-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-light.imageset/Contents.json deleted file mode 100644 index dcd06d0eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"brain-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-thin.imageset/Contents.json deleted file mode 100644 index 8eca32eb6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"brain-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain.imageset/Contents.json deleted file mode 100644 index 546d84823..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"brain.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-bold.imageset/Contents.json deleted file mode 100644 index e39cdbe9d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"brandy-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-duotone.imageset/Contents.json deleted file mode 100644 index 989333b32..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"brandy-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-fill.imageset/Contents.json deleted file mode 100644 index 2d617d911..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"brandy-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-light.imageset/Contents.json deleted file mode 100644 index d15ffae30..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"brandy-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-thin.imageset/Contents.json deleted file mode 100644 index 7da14516b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"brandy-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy.imageset/Contents.json deleted file mode 100644 index 084736946..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"brandy.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-bold.imageset/Contents.json deleted file mode 100644 index 4ecaa0865..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bread-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-duotone.imageset/Contents.json deleted file mode 100644 index 9d941660f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bread-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-fill.imageset/Contents.json deleted file mode 100644 index 9310657f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bread-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-light.imageset/Contents.json deleted file mode 100644 index 584718105..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bread-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-thin.imageset/Contents.json deleted file mode 100644 index 0995185ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"bread-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread.imageset/Contents.json deleted file mode 100644 index e101561af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bread.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-bold.imageset/Contents.json deleted file mode 100644 index fe94caeee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"bridge-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-duotone.imageset/Contents.json deleted file mode 100644 index 40fa9ae4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"bridge-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-fill.imageset/Contents.json deleted file mode 100644 index e59ee2ebb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bridge-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-light.imageset/Contents.json deleted file mode 100644 index f164a1dd8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bridge-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-thin.imageset/Contents.json deleted file mode 100644 index a9f18c6cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"bridge-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge.imageset/Contents.json deleted file mode 100644 index 3eb900e71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bridge.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-bold.imageset/Contents.json deleted file mode 100644 index 640ad0e86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"briefcase-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-duotone.imageset/Contents.json deleted file mode 100644 index b9429637e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"briefcase-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-fill.imageset/Contents.json deleted file mode 100644 index 634a05fbd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"briefcase-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-light.imageset/Contents.json deleted file mode 100644 index e9fe7cfe8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"briefcase-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-bold.imageset/Contents.json deleted file mode 100644 index 9a83f2a7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"briefcase-metal-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-duotone.imageset/Contents.json deleted file mode 100644 index 032971114..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"briefcase-metal-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-fill.imageset/Contents.json deleted file mode 100644 index e512cc38d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"briefcase-metal-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-light.imageset/Contents.json deleted file mode 100644 index e41bbdc4c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"briefcase-metal-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-thin.imageset/Contents.json deleted file mode 100644 index 789dca3d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"briefcase-metal-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal.imageset/Contents.json deleted file mode 100644 index 6df0dca95..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"briefcase-metal.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-thin.imageset/Contents.json deleted file mode 100644 index ac30fcc0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"briefcase-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase.imageset/Contents.json deleted file mode 100644 index 6f19a7601..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"briefcase.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-bold.imageset/Contents.json deleted file mode 100644 index ef03356c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"broadcast-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-duotone.imageset/Contents.json deleted file mode 100644 index 4b0768b36..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"broadcast-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-fill.imageset/Contents.json deleted file mode 100644 index 216fbcce7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"broadcast-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-light.imageset/Contents.json deleted file mode 100644 index 74294b23b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"broadcast-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-thin.imageset/Contents.json deleted file mode 100644 index 4d5d10fb2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"broadcast-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast.imageset/Contents.json deleted file mode 100644 index 108a12bc0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"broadcast.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-bold.imageset/Contents.json deleted file mode 100644 index 8b5a63f6f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"broom-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-duotone.imageset/Contents.json deleted file mode 100644 index b10f66aac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"broom-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-fill.imageset/Contents.json deleted file mode 100644 index c2df63371..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"broom-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-light.imageset/Contents.json deleted file mode 100644 index 4a6c10eb2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"broom-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-thin.imageset/Contents.json deleted file mode 100644 index 3f769bf8e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"broom-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom.imageset/Contents.json deleted file mode 100644 index 5835da41c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"broom.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-bold.imageset/Contents.json deleted file mode 100644 index bcde9ac7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"browser-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-duotone.imageset/Contents.json deleted file mode 100644 index 446238d87..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"browser-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-fill.imageset/Contents.json deleted file mode 100644 index 396de3f3a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"browser-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-light.imageset/Contents.json deleted file mode 100644 index 56e994b3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"browser-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-thin.imageset/Contents.json deleted file mode 100644 index e550d3fbd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"browser-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser.imageset/Contents.json deleted file mode 100644 index 8dde82b6d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"browser.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-bold.imageset/Contents.json deleted file mode 100644 index 3892eca6a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"browsers-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-duotone.imageset/Contents.json deleted file mode 100644 index edb5a3db7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"browsers-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-fill.imageset/Contents.json deleted file mode 100644 index b1fddb4cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"browsers-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-light.imageset/Contents.json deleted file mode 100644 index e680410ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"browsers-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-thin.imageset/Contents.json deleted file mode 100644 index d01251256..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"browsers-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers.imageset/Contents.json deleted file mode 100644 index 6fa771534..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"browsers.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-bold.imageset/Contents.json deleted file mode 100644 index db8ff8330..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bug-beetle-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-duotone.imageset/Contents.json deleted file mode 100644 index 12c656809..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"bug-beetle-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-fill.imageset/Contents.json deleted file mode 100644 index 2426e8d94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bug-beetle-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-light.imageset/Contents.json deleted file mode 100644 index b17748799..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bug-beetle-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-thin.imageset/Contents.json deleted file mode 100644 index a18bf56eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bug-beetle-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle.imageset/Contents.json deleted file mode 100644 index f262aa59c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"bug-beetle.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-bold.imageset/Contents.json deleted file mode 100644 index c7ab760ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bug-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-bold.imageset/Contents.json deleted file mode 100644 index f5daf70c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bug-droid-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-duotone.imageset/Contents.json deleted file mode 100644 index 7e5182ebe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bug-droid-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-fill.imageset/Contents.json deleted file mode 100644 index 1a341ae54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bug-droid-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-light.imageset/Contents.json deleted file mode 100644 index e371c34e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bug-droid-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-thin.imageset/Contents.json deleted file mode 100644 index 8b9a38169..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bug-droid-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid.imageset/Contents.json deleted file mode 100644 index 76a4a4345..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bug-droid.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-duotone.imageset/Contents.json deleted file mode 100644 index cb9cce9fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bug-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-fill.imageset/Contents.json deleted file mode 100644 index 3cc2460e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bug-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-light.imageset/Contents.json deleted file mode 100644 index 1260e55dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"bug-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-thin.imageset/Contents.json deleted file mode 100644 index fafb7dd96..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bug-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug.imageset/Contents.json deleted file mode 100644 index e86bfdca8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bug.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-bold.imageset/Contents.json deleted file mode 100644 index ffb9c803b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"building-apartment-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-duotone.imageset/Contents.json deleted file mode 100644 index 76504c2ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"building-apartment-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-fill.imageset/Contents.json deleted file mode 100644 index f049a85cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"building-apartment-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-light.imageset/Contents.json deleted file mode 100644 index 90f4d69c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"building-apartment-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-thin.imageset/Contents.json deleted file mode 100644 index 65363da6a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"building-apartment-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment.imageset/Contents.json deleted file mode 100644 index 8bdc4fa41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"building-apartment.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-bold.imageset/Contents.json deleted file mode 100644 index a2ede8bb7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"building-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-duotone.imageset/Contents.json deleted file mode 100644 index 1389ebab2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"building-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-fill.imageset/Contents.json deleted file mode 100644 index c51cf3deb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"building-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-light.imageset/Contents.json deleted file mode 100644 index 935f53b60..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"building-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-bold.imageset/Contents.json deleted file mode 100644 index 97a3ffa5a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"building-office-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-duotone.imageset/Contents.json deleted file mode 100644 index 327607dc6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"building-office-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-fill.imageset/Contents.json deleted file mode 100644 index b215795e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"building-office-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-light.imageset/Contents.json deleted file mode 100644 index 6930f7d41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"building-office-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-thin.imageset/Contents.json deleted file mode 100644 index 02f975ee3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"building-office-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office.imageset/Contents.json deleted file mode 100644 index c37c87981..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"building-office.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-thin.imageset/Contents.json deleted file mode 100644 index 12d50f8d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"building-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building.imageset/Contents.json deleted file mode 100644 index 1e8a8879a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"building.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-bold.imageset/Contents.json deleted file mode 100644 index aee84e3e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"buildings-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-duotone.imageset/Contents.json deleted file mode 100644 index 74bb3fa30..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"buildings-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-fill.imageset/Contents.json deleted file mode 100644 index 2e63abdab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"buildings-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-light.imageset/Contents.json deleted file mode 100644 index dc71254a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"buildings-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-thin.imageset/Contents.json deleted file mode 100644 index 80467927b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"buildings-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings.imageset/Contents.json deleted file mode 100644 index e77662174..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"buildings.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-bold.imageset/Contents.json deleted file mode 100644 index d4ca039cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bulldozer-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-duotone.imageset/Contents.json deleted file mode 100644 index 5603aff29..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bulldozer-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-fill.imageset/Contents.json deleted file mode 100644 index 5a6319621..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bulldozer-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-light.imageset/Contents.json deleted file mode 100644 index d75362a4f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bulldozer-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-thin.imageset/Contents.json deleted file mode 100644 index 259eff37b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"bulldozer-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer.imageset/Contents.json deleted file mode 100644 index 3ad6f78b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"bulldozer.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-bold.imageset/Contents.json deleted file mode 100644 index e72cc9cfb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bus-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-duotone.imageset/Contents.json deleted file mode 100644 index fc23c1cf6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"bus-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-fill.imageset/Contents.json deleted file mode 100644 index 0e48e8d13..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bus-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-light.imageset/Contents.json deleted file mode 100644 index 356d549c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"bus-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-thin.imageset/Contents.json deleted file mode 100644 index 11bc4d6ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"bus-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus.imageset/Contents.json deleted file mode 100644 index 3304b6a3f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"bus.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-bold.imageset/Contents.json deleted file mode 100644 index 92362b3c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"butterfly-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-duotone.imageset/Contents.json deleted file mode 100644 index dbfe27009..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"butterfly-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-fill.imageset/Contents.json deleted file mode 100644 index 4d81bcf86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"butterfly-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-light.imageset/Contents.json deleted file mode 100644 index ef0d26eed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"butterfly-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-thin.imageset/Contents.json deleted file mode 100644 index bbdce9975..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"butterfly-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly.imageset/Contents.json deleted file mode 100644 index 68bf1c1de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"butterfly.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-bold.imageset/Contents.json deleted file mode 100644 index c7c24579b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cable-car-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-duotone.imageset/Contents.json deleted file mode 100644 index 24da86992..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cable-car-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-fill.imageset/Contents.json deleted file mode 100644 index 4b27180e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cable-car-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-light.imageset/Contents.json deleted file mode 100644 index c31ee337c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"cable-car-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-thin.imageset/Contents.json deleted file mode 100644 index 8217554a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cable-car-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car.imageset/Contents.json deleted file mode 100644 index 2c2091aad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cable-car.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-bold.imageset/Contents.json deleted file mode 100644 index a850930e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cactus-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-duotone.imageset/Contents.json deleted file mode 100644 index f54b7146a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cactus-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-fill.imageset/Contents.json deleted file mode 100644 index 582eddb8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cactus-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-light.imageset/Contents.json deleted file mode 100644 index 2be17982c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cactus-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-thin.imageset/Contents.json deleted file mode 100644 index 6909f438a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cactus-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus.imageset/Contents.json deleted file mode 100644 index 42cdb3440..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cactus.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-bold.imageset/Contents.json deleted file mode 100644 index 8784b0186..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cake-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-duotone.imageset/Contents.json deleted file mode 100644 index 10c84c45e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cake-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-fill.imageset/Contents.json deleted file mode 100644 index 36face41f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cake-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-light.imageset/Contents.json deleted file mode 100644 index 93b77212d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cake-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-thin.imageset/Contents.json deleted file mode 100644 index cb0c6465f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cake-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake.imageset/Contents.json deleted file mode 100644 index f53d1a6e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cake.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-bold.imageset/Contents.json deleted file mode 100644 index 07c7e4383..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"calculator-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-duotone.imageset/Contents.json deleted file mode 100644 index b1f682f81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"calculator-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-fill.imageset/Contents.json deleted file mode 100644 index bf2b32b89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calculator-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-light.imageset/Contents.json deleted file mode 100644 index 59f1c21b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"calculator-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-thin.imageset/Contents.json deleted file mode 100644 index 470a1bddd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calculator-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator.imageset/Contents.json deleted file mode 100644 index 3f8268cee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"calculator.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-bold.imageset/Contents.json deleted file mode 100644 index 1f0ac1667..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"calendar-blank-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-duotone.imageset/Contents.json deleted file mode 100644 index e3e159866..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calendar-blank-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-fill.imageset/Contents.json deleted file mode 100644 index ddfe598fe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"calendar-blank-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-light.imageset/Contents.json deleted file mode 100644 index 11e0a2fc4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"calendar-blank-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-thin.imageset/Contents.json deleted file mode 100644 index ff4c37bd6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-blank-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank.imageset/Contents.json deleted file mode 100644 index b73b5f003..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"calendar-blank.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-bold.imageset/Contents.json deleted file mode 100644 index 46a27b60c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-bold.imageset/Contents.json deleted file mode 100644 index f77e318b1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calendar-check-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-duotone.imageset/Contents.json deleted file mode 100644 index 2503ad903..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"calendar-check-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-fill.imageset/Contents.json deleted file mode 100644 index c118d58c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-check-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-light.imageset/Contents.json deleted file mode 100644 index f6534fdd4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calendar-check-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-thin.imageset/Contents.json deleted file mode 100644 index d17539738..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"calendar-check-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check.imageset/Contents.json deleted file mode 100644 index 6a15013d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calendar-check.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-bold.imageset/Contents.json deleted file mode 100644 index f7d7e8cea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"calendar-dot-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-duotone.imageset/Contents.json deleted file mode 100644 index 71b9ae00d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"calendar-dot-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-fill.imageset/Contents.json deleted file mode 100644 index d9a99cb11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-dot-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-light.imageset/Contents.json deleted file mode 100644 index c8d66e7c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calendar-dot-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-thin.imageset/Contents.json deleted file mode 100644 index c9fc29d90..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-dot-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot.imageset/Contents.json deleted file mode 100644 index a74382fe6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"calendar-dot.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-bold.imageset/Contents.json deleted file mode 100644 index be066dec4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"calendar-dots-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-duotone.imageset/Contents.json deleted file mode 100644 index 538232438..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-dots-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-fill.imageset/Contents.json deleted file mode 100644 index b8afdf1d6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"calendar-dots-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-light.imageset/Contents.json deleted file mode 100644 index 7551ebc39..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-dots-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-thin.imageset/Contents.json deleted file mode 100644 index f119b7c1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-dots-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots.imageset/Contents.json deleted file mode 100644 index 2e633d336..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"calendar-dots.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-duotone.imageset/Contents.json deleted file mode 100644 index b956bd95a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"calendar-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-fill.imageset/Contents.json deleted file mode 100644 index 962d73fba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"calendar-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-bold.imageset/Contents.json deleted file mode 100644 index 6a21bb91c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"calendar-heart-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-duotone.imageset/Contents.json deleted file mode 100644 index 98b1298a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calendar-heart-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-fill.imageset/Contents.json deleted file mode 100644 index dadcd6d0f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"calendar-heart-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-light.imageset/Contents.json deleted file mode 100644 index 3cea2df90..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-heart-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-thin.imageset/Contents.json deleted file mode 100644 index 847a5bb09..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"calendar-heart-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart.imageset/Contents.json deleted file mode 100644 index 670546b8c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"calendar-heart.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-light.imageset/Contents.json deleted file mode 100644 index eeba6397e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"calendar-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-bold.imageset/Contents.json deleted file mode 100644 index 86b4335c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-minus-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-duotone.imageset/Contents.json deleted file mode 100644 index a7f1104dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-minus-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-fill.imageset/Contents.json deleted file mode 100644 index 54fe7a77b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calendar-minus-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-light.imageset/Contents.json deleted file mode 100644 index b34531f10..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"calendar-minus-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-thin.imageset/Contents.json deleted file mode 100644 index 912536024..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-minus-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus.imageset/Contents.json deleted file mode 100644 index ca52c3b92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calendar-minus.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-bold.imageset/Contents.json deleted file mode 100644 index 802d69d1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"calendar-plus-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-duotone.imageset/Contents.json deleted file mode 100644 index 7ff1bf3fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"calendar-plus-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-fill.imageset/Contents.json deleted file mode 100644 index 62c3b5d09..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"calendar-plus-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-light.imageset/Contents.json deleted file mode 100644 index 49fd03f32..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calendar-plus-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-thin.imageset/Contents.json deleted file mode 100644 index 24ec60e34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"calendar-plus-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus.imageset/Contents.json deleted file mode 100644 index f530b1335..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calendar-plus.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-bold.imageset/Contents.json deleted file mode 100644 index 7f67a596e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"calendar-slash-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-duotone.imageset/Contents.json deleted file mode 100644 index 33ec9c424..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"calendar-slash-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-fill.imageset/Contents.json deleted file mode 100644 index 978728dcd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-slash-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-light.imageset/Contents.json deleted file mode 100644 index 16795f7ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-slash-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-thin.imageset/Contents.json deleted file mode 100644 index 511e37206..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calendar-slash-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash.imageset/Contents.json deleted file mode 100644 index a3f5d795b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"calendar-slash.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-bold.imageset/Contents.json deleted file mode 100644 index bd18c002c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"calendar-star-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-duotone.imageset/Contents.json deleted file mode 100644 index 6c0db5968..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-star-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-fill.imageset/Contents.json deleted file mode 100644 index 9f93c3f39..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"calendar-star-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-light.imageset/Contents.json deleted file mode 100644 index b70c85a3f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calendar-star-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-thin.imageset/Contents.json deleted file mode 100644 index db9df66e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-star-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star.imageset/Contents.json deleted file mode 100644 index 943b36b86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calendar-star.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-thin.imageset/Contents.json deleted file mode 100644 index 5674be611..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"calendar-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-bold.imageset/Contents.json deleted file mode 100644 index 83c506c47..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-x-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-duotone.imageset/Contents.json deleted file mode 100644 index 9dfe0e834..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar-x-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-fill.imageset/Contents.json deleted file mode 100644 index 094a88073..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"calendar-x-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-light.imageset/Contents.json deleted file mode 100644 index 6818e238f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"calendar-x-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-thin.imageset/Contents.json deleted file mode 100644 index e4cb04ac7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"calendar-x-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x.imageset/Contents.json deleted file mode 100644 index c1134893c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"calendar-x.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar.imageset/Contents.json deleted file mode 100644 index 27d37a987..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"calendar.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-bold.imageset/Contents.json deleted file mode 100644 index b66b5d28e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"call-bell-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-duotone.imageset/Contents.json deleted file mode 100644 index 06ae6b243..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"call-bell-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-fill.imageset/Contents.json deleted file mode 100644 index a2f4390f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"call-bell-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-light.imageset/Contents.json deleted file mode 100644 index cd60dead8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"call-bell-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-thin.imageset/Contents.json deleted file mode 100644 index e813af490..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"call-bell-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell.imageset/Contents.json deleted file mode 100644 index 8257f5679..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"call-bell.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-bold.imageset/Contents.json deleted file mode 100644 index 8c1834eea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"camera-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-duotone.imageset/Contents.json deleted file mode 100644 index 098dc496d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"camera-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-fill.imageset/Contents.json deleted file mode 100644 index bfb37771b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"camera-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-light.imageset/Contents.json deleted file mode 100644 index 529cf6a3f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"camera-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-bold.imageset/Contents.json deleted file mode 100644 index c36762ed9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"camera-plus-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-duotone.imageset/Contents.json deleted file mode 100644 index 2f84b4a3b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"camera-plus-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-fill.imageset/Contents.json deleted file mode 100644 index 1e1ef1427..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"camera-plus-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-light.imageset/Contents.json deleted file mode 100644 index 1651a3190..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"camera-plus-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-thin.imageset/Contents.json deleted file mode 100644 index f8f1dd87c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"camera-plus-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus.imageset/Contents.json deleted file mode 100644 index f600a7a99..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"camera-plus.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-bold.imageset/Contents.json deleted file mode 100644 index bce54f699..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"camera-rotate-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-duotone.imageset/Contents.json deleted file mode 100644 index c35486648..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"camera-rotate-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-fill.imageset/Contents.json deleted file mode 100644 index 4c3ca3400..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"camera-rotate-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-light.imageset/Contents.json deleted file mode 100644 index 4ab9c748a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"camera-rotate-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-thin.imageset/Contents.json deleted file mode 100644 index 9abf9ea1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"camera-rotate-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate.imageset/Contents.json deleted file mode 100644 index da329372e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"camera-rotate.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-bold.imageset/Contents.json deleted file mode 100644 index e2be40f97..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"camera-slash-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-duotone.imageset/Contents.json deleted file mode 100644 index e6a3da9f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"camera-slash-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-fill.imageset/Contents.json deleted file mode 100644 index c27cb9030..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"camera-slash-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-light.imageset/Contents.json deleted file mode 100644 index 46df9e6ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"camera-slash-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-thin.imageset/Contents.json deleted file mode 100644 index bd6ea8838..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"camera-slash-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash.imageset/Contents.json deleted file mode 100644 index 4bd4a127b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"camera-slash.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-thin.imageset/Contents.json deleted file mode 100644 index dd258e072..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"camera-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera.imageset/Contents.json deleted file mode 100644 index 26806ce31..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"camera.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-bold.imageset/Contents.json deleted file mode 100644 index 86781ba41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"campfire-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-duotone.imageset/Contents.json deleted file mode 100644 index a518a2f88..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"campfire-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-fill.imageset/Contents.json deleted file mode 100644 index 52832c9af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"campfire-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-light.imageset/Contents.json deleted file mode 100644 index d34ebb0fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"campfire-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-thin.imageset/Contents.json deleted file mode 100644 index a40849cf5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"campfire-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire.imageset/Contents.json deleted file mode 100644 index 518657ca9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"campfire.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-bold.imageset/Contents.json deleted file mode 100644 index 124ba80bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"car-battery-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-duotone.imageset/Contents.json deleted file mode 100644 index 404bd2ed6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"car-battery-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-fill.imageset/Contents.json deleted file mode 100644 index 9b2a05e21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"car-battery-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-light.imageset/Contents.json deleted file mode 100644 index a324d9974..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"car-battery-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-thin.imageset/Contents.json deleted file mode 100644 index 0c091e0c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"car-battery-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery.imageset/Contents.json deleted file mode 100644 index 70a735287..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"car-battery.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-bold.imageset/Contents.json deleted file mode 100644 index 45c9a4c49..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"car-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-duotone.imageset/Contents.json deleted file mode 100644 index 96d3f2033..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"car-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-fill.imageset/Contents.json deleted file mode 100644 index ccca3b428..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"car-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-light.imageset/Contents.json deleted file mode 100644 index ee65c5d29..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"car-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-bold.imageset/Contents.json deleted file mode 100644 index fb048ec10..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"car-profile-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-duotone.imageset/Contents.json deleted file mode 100644 index d44f81367..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"car-profile-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-fill.imageset/Contents.json deleted file mode 100644 index f9eeb8530..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"car-profile-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-light.imageset/Contents.json deleted file mode 100644 index 3278c9336..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"car-profile-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-thin.imageset/Contents.json deleted file mode 100644 index 4dd9d093c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"car-profile-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile.imageset/Contents.json deleted file mode 100644 index 8832e2f43..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"car-profile.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-bold.imageset/Contents.json deleted file mode 100644 index 8a8ae0719..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"car-simple-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-duotone.imageset/Contents.json deleted file mode 100644 index c551df3de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"car-simple-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-fill.imageset/Contents.json deleted file mode 100644 index a3a1c4aee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"car-simple-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-light.imageset/Contents.json deleted file mode 100644 index 15a1dec1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"car-simple-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-thin.imageset/Contents.json deleted file mode 100644 index 248993c7c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"car-simple-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple.imageset/Contents.json deleted file mode 100644 index 38b4b5166..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"car-simple.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-thin.imageset/Contents.json deleted file mode 100644 index 62a946c29..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"car-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car.imageset/Contents.json deleted file mode 100644 index 974bfec30..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"car.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-bold.imageset/Contents.json deleted file mode 100644 index f41567973..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cardholder-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-duotone.imageset/Contents.json deleted file mode 100644 index 3bc65dce9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cardholder-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-fill.imageset/Contents.json deleted file mode 100644 index 12ab8fc5f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cardholder-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-light.imageset/Contents.json deleted file mode 100644 index 29be74a05..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"cardholder-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-thin.imageset/Contents.json deleted file mode 100644 index 97593abf5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cardholder-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder.imageset/Contents.json deleted file mode 100644 index 424abcfc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cardholder.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-bold.imageset/Contents.json deleted file mode 100644 index be0a8954a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cards-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-duotone.imageset/Contents.json deleted file mode 100644 index c449b30b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cards-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-fill.imageset/Contents.json deleted file mode 100644 index 73d7a3293..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cards-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-light.imageset/Contents.json deleted file mode 100644 index 795ad4c3f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cards-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-thin.imageset/Contents.json deleted file mode 100644 index 31b035982..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cards-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-bold.imageset/Contents.json deleted file mode 100644 index 30520aa7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cards-three-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-duotone.imageset/Contents.json deleted file mode 100644 index 253c00f80..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cards-three-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-fill.imageset/Contents.json deleted file mode 100644 index 4cd083621..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cards-three-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-light.imageset/Contents.json deleted file mode 100644 index 9e895c6eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cards-three-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-thin.imageset/Contents.json deleted file mode 100644 index 53257f60c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cards-three-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three.imageset/Contents.json deleted file mode 100644 index 797639925..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cards-three.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards.imageset/Contents.json deleted file mode 100644 index f39692e79..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cards.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-bold.imageset/Contents.json deleted file mode 100644 index b0c529947..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-circle-double-down-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-duotone.imageset/Contents.json deleted file mode 100644 index 3ac506cab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-circle-double-down-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-fill.imageset/Contents.json deleted file mode 100644 index 3318cf03b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"caret-circle-double-down-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-light.imageset/Contents.json deleted file mode 100644 index 967d8aa45..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-circle-double-down-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-thin.imageset/Contents.json deleted file mode 100644 index 96986731e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"caret-circle-double-down-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down.imageset/Contents.json deleted file mode 100644 index e811005b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-circle-double-down.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-bold.imageset/Contents.json deleted file mode 100644 index fce4bfdf2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-circle-double-left-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-duotone.imageset/Contents.json deleted file mode 100644 index 4e12cae51..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"caret-circle-double-left-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-fill.imageset/Contents.json deleted file mode 100644 index 5dcf65809..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-circle-double-left-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-light.imageset/Contents.json deleted file mode 100644 index b61ae092f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-circle-double-left-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-thin.imageset/Contents.json deleted file mode 100644 index 28bf6f6ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"caret-circle-double-left-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left.imageset/Contents.json deleted file mode 100644 index c4f3ae407..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-circle-double-left.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-bold.imageset/Contents.json deleted file mode 100644 index dfc29c2da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-circle-double-right-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-duotone.imageset/Contents.json deleted file mode 100644 index 0aef26161..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"caret-circle-double-right-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-fill.imageset/Contents.json deleted file mode 100644 index 8c3acb93c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"caret-circle-double-right-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-light.imageset/Contents.json deleted file mode 100644 index 666a925f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-circle-double-right-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-thin.imageset/Contents.json deleted file mode 100644 index 39263ec89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"caret-circle-double-right-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right.imageset/Contents.json deleted file mode 100644 index 02a0394cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-circle-double-right.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-bold.imageset/Contents.json deleted file mode 100644 index 51bf548ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"caret-circle-double-up-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-duotone.imageset/Contents.json deleted file mode 100644 index d46de06f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-circle-double-up-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-fill.imageset/Contents.json deleted file mode 100644 index 2c5225887..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-circle-double-up-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-light.imageset/Contents.json deleted file mode 100644 index 8fd35941a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"caret-circle-double-up-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-thin.imageset/Contents.json deleted file mode 100644 index a1d22d9a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-circle-double-up-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up.imageset/Contents.json deleted file mode 100644 index f416e2cc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"caret-circle-double-up.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-bold.imageset/Contents.json deleted file mode 100644 index c59c2d701..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-circle-down-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-duotone.imageset/Contents.json deleted file mode 100644 index cec5f5e57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"caret-circle-down-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-fill.imageset/Contents.json deleted file mode 100644 index 9eded80ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-circle-down-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-light.imageset/Contents.json deleted file mode 100644 index 2f5eb0d5b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-circle-down-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-thin.imageset/Contents.json deleted file mode 100644 index aa61d30d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-circle-down-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down.imageset/Contents.json deleted file mode 100644 index 2dc461abb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"caret-circle-down.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-bold.imageset/Contents.json deleted file mode 100644 index fc47ac7ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-circle-left-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-duotone.imageset/Contents.json deleted file mode 100644 index 914393581..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-circle-left-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-fill.imageset/Contents.json deleted file mode 100644 index 6da185f10..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-circle-left-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-light.imageset/Contents.json deleted file mode 100644 index c8886fbcb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"caret-circle-left-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-thin.imageset/Contents.json deleted file mode 100644 index 2508a951d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"caret-circle-left-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left.imageset/Contents.json deleted file mode 100644 index 8d7a02194..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"caret-circle-left.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-bold.imageset/Contents.json deleted file mode 100644 index 4f9a2089c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"caret-circle-right-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-duotone.imageset/Contents.json deleted file mode 100644 index 98b7c3591..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"caret-circle-right-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-fill.imageset/Contents.json deleted file mode 100644 index ce7812e07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-circle-right-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-light.imageset/Contents.json deleted file mode 100644 index 663620f54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-circle-right-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-thin.imageset/Contents.json deleted file mode 100644 index 88fd960a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"caret-circle-right-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right.imageset/Contents.json deleted file mode 100644 index 812b652a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-circle-right.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-bold.imageset/Contents.json deleted file mode 100644 index 4fec6520c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-circle-up-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-bold.imageset/Contents.json deleted file mode 100644 index 6895f0d55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-circle-up-down-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-duotone.imageset/Contents.json deleted file mode 100644 index 5c6a6fe5e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"caret-circle-up-down-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-fill.imageset/Contents.json deleted file mode 100644 index ed89dd91f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-circle-up-down-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-light.imageset/Contents.json deleted file mode 100644 index 0fe02b69f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"caret-circle-up-down-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-thin.imageset/Contents.json deleted file mode 100644 index 28448eb14..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"caret-circle-up-down-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down.imageset/Contents.json deleted file mode 100644 index 81504665c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-circle-up-down.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-duotone.imageset/Contents.json deleted file mode 100644 index 2309e89d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"caret-circle-up-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-fill.imageset/Contents.json deleted file mode 100644 index 3aad435e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-circle-up-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-light.imageset/Contents.json deleted file mode 100644 index 6f57a3806..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-circle-up-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-thin.imageset/Contents.json deleted file mode 100644 index accdfcda0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-circle-up-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up.imageset/Contents.json deleted file mode 100644 index 4066a1dde..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"caret-circle-up.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-bold.imageset/Contents.json deleted file mode 100644 index 1dac4a963..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-double-down-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-duotone.imageset/Contents.json deleted file mode 100644 index 9ee67fcc1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"caret-double-down-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-fill.imageset/Contents.json deleted file mode 100644 index a2bf59a3c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"caret-double-down-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-light.imageset/Contents.json deleted file mode 100644 index c376fa45c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-double-down-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-thin.imageset/Contents.json deleted file mode 100644 index 0897f6c4a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-double-down-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down.imageset/Contents.json deleted file mode 100644 index d008072f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-double-down.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-bold.imageset/Contents.json deleted file mode 100644 index 6debc965b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-double-left-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-duotone.imageset/Contents.json deleted file mode 100644 index 2ad6464da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-double-left-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-fill.imageset/Contents.json deleted file mode 100644 index 9fbc813d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-double-left-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-light.imageset/Contents.json deleted file mode 100644 index b356cfac7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"caret-double-left-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-thin.imageset/Contents.json deleted file mode 100644 index a7d3c3b5b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-double-left-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left.imageset/Contents.json deleted file mode 100644 index 56d0d158c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-double-left.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-bold.imageset/Contents.json deleted file mode 100644 index 3c24d57f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-double-right-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-duotone.imageset/Contents.json deleted file mode 100644 index 2c1ecbfa1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-double-right-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-fill.imageset/Contents.json deleted file mode 100644 index 0ea159e8b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-double-right-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-light.imageset/Contents.json deleted file mode 100644 index 3a17e018a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-double-right-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-thin.imageset/Contents.json deleted file mode 100644 index 87376a6d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"caret-double-right-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right.imageset/Contents.json deleted file mode 100644 index 31a9aefc3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"caret-double-right.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-bold.imageset/Contents.json deleted file mode 100644 index a52448ac7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"caret-double-up-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-duotone.imageset/Contents.json deleted file mode 100644 index a85f61d25..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-double-up-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-fill.imageset/Contents.json deleted file mode 100644 index 976e5b997..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-double-up-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-light.imageset/Contents.json deleted file mode 100644 index dd4d83321..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-double-up-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-thin.imageset/Contents.json deleted file mode 100644 index df42b1e10..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"caret-double-up-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up.imageset/Contents.json deleted file mode 100644 index 96d4279ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-double-up.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-bold.imageset/Contents.json deleted file mode 100644 index 9d90feba1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"caret-down-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-duotone.imageset/Contents.json deleted file mode 100644 index c81117f56..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-down-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-fill.imageset/Contents.json deleted file mode 100644 index 6b0c90e72..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-down-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-light.imageset/Contents.json deleted file mode 100644 index 98c022d4b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-down-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-thin.imageset/Contents.json deleted file mode 100644 index 875b1db7e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-down-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down.imageset/Contents.json deleted file mode 100644 index 01ff1d18b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-down.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-bold.imageset/Contents.json deleted file mode 100644 index c7e4e2026..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-left-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-duotone.imageset/Contents.json deleted file mode 100644 index 3d6c468cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-left-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-fill.imageset/Contents.json deleted file mode 100644 index c22b16fe4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"caret-left-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-light.imageset/Contents.json deleted file mode 100644 index a2d19c263..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-left-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-thin.imageset/Contents.json deleted file mode 100644 index c1d8fabad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"caret-left-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left.imageset/Contents.json deleted file mode 100644 index 9ea2773b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"caret-left.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-bold.imageset/Contents.json deleted file mode 100644 index 9a4b4f0b1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"caret-line-down-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-duotone.imageset/Contents.json deleted file mode 100644 index e800dc03d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"caret-line-down-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-fill.imageset/Contents.json deleted file mode 100644 index d5ffc2c0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"caret-line-down-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-light.imageset/Contents.json deleted file mode 100644 index 5b924aa41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-line-down-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-thin.imageset/Contents.json deleted file mode 100644 index 1e4d8a786..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"caret-line-down-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down.imageset/Contents.json deleted file mode 100644 index 4a2970978..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"caret-line-down.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-bold.imageset/Contents.json deleted file mode 100644 index 6b5002075..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-line-left-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-duotone.imageset/Contents.json deleted file mode 100644 index 378923a41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-line-left-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-fill.imageset/Contents.json deleted file mode 100644 index bbf9f81d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"caret-line-left-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-light.imageset/Contents.json deleted file mode 100644 index 6a7998f6c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-line-left-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-thin.imageset/Contents.json deleted file mode 100644 index 77c70378a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-line-left-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left.imageset/Contents.json deleted file mode 100644 index 6443d55a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"caret-line-left.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-bold.imageset/Contents.json deleted file mode 100644 index 28c4d4b65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-line-right-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-duotone.imageset/Contents.json deleted file mode 100644 index a849506a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-line-right-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-fill.imageset/Contents.json deleted file mode 100644 index c1956bbbf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-line-right-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-light.imageset/Contents.json deleted file mode 100644 index 094efe792..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-line-right-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-thin.imageset/Contents.json deleted file mode 100644 index 7107975f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-line-right-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right.imageset/Contents.json deleted file mode 100644 index 2190db704..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-line-right.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-bold.imageset/Contents.json deleted file mode 100644 index 2835024b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"caret-line-up-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-duotone.imageset/Contents.json deleted file mode 100644 index 6f4f518c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-line-up-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-fill.imageset/Contents.json deleted file mode 100644 index 15118b57b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"caret-line-up-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-light.imageset/Contents.json deleted file mode 100644 index 41c147c2f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-line-up-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-thin.imageset/Contents.json deleted file mode 100644 index bc475fa65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"caret-line-up-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up.imageset/Contents.json deleted file mode 100644 index d2fdacb16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-line-up.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-bold.imageset/Contents.json deleted file mode 100644 index e15a3a88f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-right-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-duotone.imageset/Contents.json deleted file mode 100644 index deb88843a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"caret-right-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-fill.imageset/Contents.json deleted file mode 100644 index eb24ecd78..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"caret-right-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-light.imageset/Contents.json deleted file mode 100644 index 1096ef1c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-right-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-thin.imageset/Contents.json deleted file mode 100644 index 61de34af1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-right-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right.imageset/Contents.json deleted file mode 100644 index 2511a38cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-right.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-bold.imageset/Contents.json deleted file mode 100644 index 1fb031e94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-up-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-bold.imageset/Contents.json deleted file mode 100644 index 46950ba6f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-up-down-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-duotone.imageset/Contents.json deleted file mode 100644 index 7cdcec2ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"caret-up-down-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-fill.imageset/Contents.json deleted file mode 100644 index 1f9f644a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"caret-up-down-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-light.imageset/Contents.json deleted file mode 100644 index 4bea64e3f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-up-down-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-thin.imageset/Contents.json deleted file mode 100644 index 691ee14b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-up-down-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down.imageset/Contents.json deleted file mode 100644 index 8083ff566..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-up-down.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-duotone.imageset/Contents.json deleted file mode 100644 index e5471b1f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"caret-up-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-fill.imageset/Contents.json deleted file mode 100644 index 6db162846..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"caret-up-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-light.imageset/Contents.json deleted file mode 100644 index da8da4747..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"caret-up-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-thin.imageset/Contents.json deleted file mode 100644 index 8ad65a95b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"caret-up-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up.imageset/Contents.json deleted file mode 100644 index 61a705bc3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"caret-up.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-bold.imageset/Contents.json deleted file mode 100644 index df4753548..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"carrot-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-duotone.imageset/Contents.json deleted file mode 100644 index 79dc3b26a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"carrot-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-fill.imageset/Contents.json deleted file mode 100644 index e8dd43449..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"carrot-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-light.imageset/Contents.json deleted file mode 100644 index ad5afc471..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"carrot-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-thin.imageset/Contents.json deleted file mode 100644 index d8100eb27..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"carrot-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot.imageset/Contents.json deleted file mode 100644 index 953d41334..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"carrot.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-bold.imageset/Contents.json deleted file mode 100644 index 248f77ec0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"cash-register-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-duotone.imageset/Contents.json deleted file mode 100644 index 742751339..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cash-register-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-fill.imageset/Contents.json deleted file mode 100644 index c17553e29..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"cash-register-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-light.imageset/Contents.json deleted file mode 100644 index a16a5f0f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cash-register-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-thin.imageset/Contents.json deleted file mode 100644 index 444729ec0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cash-register-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register.imageset/Contents.json deleted file mode 100644 index c1d93db84..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cash-register.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-bold.imageset/Contents.json deleted file mode 100644 index 090beeba2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cassette-tape-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-duotone.imageset/Contents.json deleted file mode 100644 index 8d15d5ff0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"cassette-tape-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-fill.imageset/Contents.json deleted file mode 100644 index 3647dd8e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cassette-tape-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-light.imageset/Contents.json deleted file mode 100644 index d48b71570..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cassette-tape-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-thin.imageset/Contents.json deleted file mode 100644 index d1339eca2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cassette-tape-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape.imageset/Contents.json deleted file mode 100644 index 584f02497..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cassette-tape.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-bold.imageset/Contents.json deleted file mode 100644 index 0f46155f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"castle-turret-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-duotone.imageset/Contents.json deleted file mode 100644 index 264208440..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"castle-turret-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-fill.imageset/Contents.json deleted file mode 100644 index b0297da4c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"castle-turret-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-light.imageset/Contents.json deleted file mode 100644 index c54a69dce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"castle-turret-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-thin.imageset/Contents.json deleted file mode 100644 index 9c0108ac6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"castle-turret-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret.imageset/Contents.json deleted file mode 100644 index ccc16ace6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"castle-turret.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-bold.imageset/Contents.json deleted file mode 100644 index b7b92389e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cat-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-duotone.imageset/Contents.json deleted file mode 100644 index 4cdc7223b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"cat-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-fill.imageset/Contents.json deleted file mode 100644 index 15baf6da1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cat-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-light.imageset/Contents.json deleted file mode 100644 index b72252f27..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cat-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-thin.imageset/Contents.json deleted file mode 100644 index 46dd82a21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cat-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat.imageset/Contents.json deleted file mode 100644 index c136d2526..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"cat.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-bold.imageset/Contents.json deleted file mode 100644 index 09253ecd4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"cell-signal-full-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-duotone.imageset/Contents.json deleted file mode 100644 index 1e23a8062..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"cell-signal-full-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-fill.imageset/Contents.json deleted file mode 100644 index 4b4ac59ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cell-signal-full-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-light.imageset/Contents.json deleted file mode 100644 index 76a14f640..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cell-signal-full-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-thin.imageset/Contents.json deleted file mode 100644 index e14f642cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cell-signal-full-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full.imageset/Contents.json deleted file mode 100644 index df5767925..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cell-signal-full.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-bold.imageset/Contents.json deleted file mode 100644 index fd340f547..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cell-signal-high-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-duotone.imageset/Contents.json deleted file mode 100644 index a5eba4478..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cell-signal-high-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-fill.imageset/Contents.json deleted file mode 100644 index efe1bd5bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cell-signal-high-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-light.imageset/Contents.json deleted file mode 100644 index 1e023a5f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cell-signal-high-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-thin.imageset/Contents.json deleted file mode 100644 index 818a05219..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cell-signal-high-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high.imageset/Contents.json deleted file mode 100644 index afd9b140a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cell-signal-high.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-bold.imageset/Contents.json deleted file mode 100644 index 665fa2bab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cell-signal-low-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-duotone.imageset/Contents.json deleted file mode 100644 index 599703478..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cell-signal-low-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-fill.imageset/Contents.json deleted file mode 100644 index 3c376d723..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cell-signal-low-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-light.imageset/Contents.json deleted file mode 100644 index 3c214d5fe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cell-signal-low-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-thin.imageset/Contents.json deleted file mode 100644 index 0af116e7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"cell-signal-low-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low.imageset/Contents.json deleted file mode 100644 index 3c5ec39de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cell-signal-low.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-bold.imageset/Contents.json deleted file mode 100644 index 238b9f3c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cell-signal-medium-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-duotone.imageset/Contents.json deleted file mode 100644 index 6a2d7bec4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cell-signal-medium-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-fill.imageset/Contents.json deleted file mode 100644 index 5aeec0054..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cell-signal-medium-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-light.imageset/Contents.json deleted file mode 100644 index ca04e949a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cell-signal-medium-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-thin.imageset/Contents.json deleted file mode 100644 index df40c5e5c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"cell-signal-medium-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium.imageset/Contents.json deleted file mode 100644 index 77f62479f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cell-signal-medium.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-bold.imageset/Contents.json deleted file mode 100644 index fd6c51ce7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"cell-signal-none-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-duotone.imageset/Contents.json deleted file mode 100644 index a84cdf5a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cell-signal-none-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-fill.imageset/Contents.json deleted file mode 100644 index a39ed1e4e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"cell-signal-none-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-light.imageset/Contents.json deleted file mode 100644 index 2adfcf1b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"cell-signal-none-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-thin.imageset/Contents.json deleted file mode 100644 index ff2db747a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cell-signal-none-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none.imageset/Contents.json deleted file mode 100644 index 5a7a9dc06..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cell-signal-none.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-bold.imageset/Contents.json deleted file mode 100644 index 064cc37cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cell-signal-slash-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-duotone.imageset/Contents.json deleted file mode 100644 index 819b64a0c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"cell-signal-slash-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-fill.imageset/Contents.json deleted file mode 100644 index a3daa670d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cell-signal-slash-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-light.imageset/Contents.json deleted file mode 100644 index ba2f60ce8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cell-signal-slash-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-thin.imageset/Contents.json deleted file mode 100644 index 5c0dc0e1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cell-signal-slash-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash.imageset/Contents.json deleted file mode 100644 index 1638eb9d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cell-signal-slash.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-bold.imageset/Contents.json deleted file mode 100644 index 1bcf3aad4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cell-signal-x-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-duotone.imageset/Contents.json deleted file mode 100644 index 1155a6901..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"cell-signal-x-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-fill.imageset/Contents.json deleted file mode 100644 index 8b8b0d236..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cell-signal-x-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-light.imageset/Contents.json deleted file mode 100644 index c2038f044..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cell-signal-x-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-thin.imageset/Contents.json deleted file mode 100644 index c6d231d9d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cell-signal-x-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x.imageset/Contents.json deleted file mode 100644 index 3c2994aa0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"cell-signal-x.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-bold.imageset/Contents.json deleted file mode 100644 index 86d72abd7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cell-tower-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-duotone.imageset/Contents.json deleted file mode 100644 index b4e40f43d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cell-tower-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-fill.imageset/Contents.json deleted file mode 100644 index 4051a8358..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cell-tower-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-light.imageset/Contents.json deleted file mode 100644 index a99dff541..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cell-tower-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-thin.imageset/Contents.json deleted file mode 100644 index 195a0038c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cell-tower-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower.imageset/Contents.json deleted file mode 100644 index 995721290..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"cell-tower.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-bold.imageset/Contents.json deleted file mode 100644 index 2c0b3e9d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"certificate-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-duotone.imageset/Contents.json deleted file mode 100644 index b7f35c8e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"certificate-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-fill.imageset/Contents.json deleted file mode 100644 index 45b45e54b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"certificate-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-light.imageset/Contents.json deleted file mode 100644 index ede69f7a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"certificate-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-thin.imageset/Contents.json deleted file mode 100644 index 77664d318..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"certificate-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate.imageset/Contents.json deleted file mode 100644 index c823e78d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"certificate.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-bold.imageset/Contents.json deleted file mode 100644 index eb229da38..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chair-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-duotone.imageset/Contents.json deleted file mode 100644 index 0e3e21190..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chair-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-fill.imageset/Contents.json deleted file mode 100644 index adc6ecbc3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"chair-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-light.imageset/Contents.json deleted file mode 100644 index ef737d9e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chair-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-thin.imageset/Contents.json deleted file mode 100644 index c1a11ac4e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chair-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair.imageset/Contents.json deleted file mode 100644 index 7a508783f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chair.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-bold.imageset/Contents.json deleted file mode 100644 index 4e559d455..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"chalkboard-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-duotone.imageset/Contents.json deleted file mode 100644 index cbb6b8872..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chalkboard-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-fill.imageset/Contents.json deleted file mode 100644 index 82b4098c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chalkboard-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-light.imageset/Contents.json deleted file mode 100644 index 918a47013..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chalkboard-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-bold.imageset/Contents.json deleted file mode 100644 index dea478296..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chalkboard-simple-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-duotone.imageset/Contents.json deleted file mode 100644 index f93d99fe7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"chalkboard-simple-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-fill.imageset/Contents.json deleted file mode 100644 index 842c89952..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chalkboard-simple-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-light.imageset/Contents.json deleted file mode 100644 index 402703ae9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"chalkboard-simple-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-thin.imageset/Contents.json deleted file mode 100644 index d1bd86d22..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chalkboard-simple-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple.imageset/Contents.json deleted file mode 100644 index 810bddc04..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chalkboard-simple.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-bold.imageset/Contents.json deleted file mode 100644 index d8515c0c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"chalkboard-teacher-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-duotone.imageset/Contents.json deleted file mode 100644 index bcd09e445..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"chalkboard-teacher-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-fill.imageset/Contents.json deleted file mode 100644 index 533d2fc53..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chalkboard-teacher-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-light.imageset/Contents.json deleted file mode 100644 index 0fad8f4d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chalkboard-teacher-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-thin.imageset/Contents.json deleted file mode 100644 index c3e21d5f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chalkboard-teacher-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher.imageset/Contents.json deleted file mode 100644 index d6543fa15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chalkboard-teacher.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-thin.imageset/Contents.json deleted file mode 100644 index 6891fa015..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"chalkboard-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard.imageset/Contents.json deleted file mode 100644 index a5e6bbe23..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chalkboard.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-bold.imageset/Contents.json deleted file mode 100644 index 01292ace9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"champagne-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-duotone.imageset/Contents.json deleted file mode 100644 index 6d02dd82d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"champagne-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-fill.imageset/Contents.json deleted file mode 100644 index f61b2221e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"champagne-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-light.imageset/Contents.json deleted file mode 100644 index 18eb68bfd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"champagne-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-thin.imageset/Contents.json deleted file mode 100644 index 7436c235a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"champagne-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne.imageset/Contents.json deleted file mode 100644 index 11c505b5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"champagne.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-bold.imageset/Contents.json deleted file mode 100644 index a5a791f64..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"charging-station-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-duotone.imageset/Contents.json deleted file mode 100644 index 98f16e366..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"charging-station-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-fill.imageset/Contents.json deleted file mode 100644 index 82c60c814..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"charging-station-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-light.imageset/Contents.json deleted file mode 100644 index 5efd77c40..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"charging-station-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-thin.imageset/Contents.json deleted file mode 100644 index 227b7207b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"charging-station-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station.imageset/Contents.json deleted file mode 100644 index 83bf6e947..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"charging-station.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-bold.imageset/Contents.json deleted file mode 100644 index ba4e073c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chart-bar-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-duotone.imageset/Contents.json deleted file mode 100644 index 442fe0f24..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-bar-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-fill.imageset/Contents.json deleted file mode 100644 index bf1cf167d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-bar-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-bold.imageset/Contents.json deleted file mode 100644 index 5a86fd7ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-bar-horizontal-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-duotone.imageset/Contents.json deleted file mode 100644 index cee291bbe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"chart-bar-horizontal-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-fill.imageset/Contents.json deleted file mode 100644 index 90bbc874b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"chart-bar-horizontal-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-light.imageset/Contents.json deleted file mode 100644 index a8a288ebc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chart-bar-horizontal-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-thin.imageset/Contents.json deleted file mode 100644 index 72babeded..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-bar-horizontal-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal.imageset/Contents.json deleted file mode 100644 index 795719346..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-bar-horizontal.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-light.imageset/Contents.json deleted file mode 100644 index 7a89496b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-bar-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-thin.imageset/Contents.json deleted file mode 100644 index 3f3beb037..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chart-bar-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar.imageset/Contents.json deleted file mode 100644 index a05536af7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chart-bar.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-bold.imageset/Contents.json deleted file mode 100644 index cba17680c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-donut-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-duotone.imageset/Contents.json deleted file mode 100644 index be04bd701..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"chart-donut-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-fill.imageset/Contents.json deleted file mode 100644 index bf52b33ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chart-donut-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-light.imageset/Contents.json deleted file mode 100644 index 4b0539861..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"chart-donut-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-thin.imageset/Contents.json deleted file mode 100644 index 754491ac8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chart-donut-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut.imageset/Contents.json deleted file mode 100644 index 985c5e961..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-donut.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-bold.imageset/Contents.json deleted file mode 100644 index 5da333ac7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chart-line-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-bold.imageset/Contents.json deleted file mode 100644 index fe6b07510..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chart-line-down-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-duotone.imageset/Contents.json deleted file mode 100644 index a4306f3f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chart-line-down-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-fill.imageset/Contents.json deleted file mode 100644 index 608168c01..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chart-line-down-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-light.imageset/Contents.json deleted file mode 100644 index 97afa5516..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"chart-line-down-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-thin.imageset/Contents.json deleted file mode 100644 index eaa2aa6fd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-line-down-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down.imageset/Contents.json deleted file mode 100644 index 1c74c5641..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chart-line-down.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-duotone.imageset/Contents.json deleted file mode 100644 index c27ff3462..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-line-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-fill.imageset/Contents.json deleted file mode 100644 index 507c8b58f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"chart-line-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-light.imageset/Contents.json deleted file mode 100644 index 73f246002..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chart-line-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-thin.imageset/Contents.json deleted file mode 100644 index 3f149878a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chart-line-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-bold.imageset/Contents.json deleted file mode 100644 index 66a7386a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-line-up-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-duotone.imageset/Contents.json deleted file mode 100644 index 1e2c85be6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chart-line-up-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-fill.imageset/Contents.json deleted file mode 100644 index e0441d750..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"chart-line-up-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-light.imageset/Contents.json deleted file mode 100644 index f900279df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chart-line-up-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-thin.imageset/Contents.json deleted file mode 100644 index a15e5039f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chart-line-up-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up.imageset/Contents.json deleted file mode 100644 index 5783a6874..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-line-up.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line.imageset/Contents.json deleted file mode 100644 index 05c85342e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chart-line.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-bold.imageset/Contents.json deleted file mode 100644 index fccb9d66a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-pie-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-duotone.imageset/Contents.json deleted file mode 100644 index 63df35bc9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chart-pie-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-fill.imageset/Contents.json deleted file mode 100644 index 3ccfad6db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chart-pie-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-light.imageset/Contents.json deleted file mode 100644 index b78c307e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"chart-pie-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-bold.imageset/Contents.json deleted file mode 100644 index 1992c1c50..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chart-pie-slice-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-duotone.imageset/Contents.json deleted file mode 100644 index 5c1a69a6a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chart-pie-slice-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-fill.imageset/Contents.json deleted file mode 100644 index 23604bea7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chart-pie-slice-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-light.imageset/Contents.json deleted file mode 100644 index fca5b5eb2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"chart-pie-slice-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-thin.imageset/Contents.json deleted file mode 100644 index f5f517d3e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chart-pie-slice-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice.imageset/Contents.json deleted file mode 100644 index d6a8dfe84..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chart-pie-slice.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-thin.imageset/Contents.json deleted file mode 100644 index 207aab9a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"chart-pie-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie.imageset/Contents.json deleted file mode 100644 index 65feb6b44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"chart-pie.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-bold.imageset/Contents.json deleted file mode 100644 index c09351e33..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"chart-polar-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-duotone.imageset/Contents.json deleted file mode 100644 index c21316aa1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"chart-polar-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-fill.imageset/Contents.json deleted file mode 100644 index f69ad4704..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chart-polar-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-light.imageset/Contents.json deleted file mode 100644 index 993586b8c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chart-polar-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-thin.imageset/Contents.json deleted file mode 100644 index 2165b10ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-polar-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar.imageset/Contents.json deleted file mode 100644 index 0c083b239..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-polar.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-bold.imageset/Contents.json deleted file mode 100644 index bce3d1cd1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chart-scatter-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-duotone.imageset/Contents.json deleted file mode 100644 index 8cb25dac9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-scatter-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-fill.imageset/Contents.json deleted file mode 100644 index bb47b3872..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chart-scatter-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-light.imageset/Contents.json deleted file mode 100644 index 6e6f99310..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chart-scatter-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-thin.imageset/Contents.json deleted file mode 100644 index 948a41de9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chart-scatter-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter.imageset/Contents.json deleted file mode 100644 index f03e5526f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chart-scatter.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-bold.imageset/Contents.json deleted file mode 100644 index 491dc5e78..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"chat-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-bold.imageset/Contents.json deleted file mode 100644 index 16669ecba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chat-centered-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-bold.imageset/Contents.json deleted file mode 100644 index 4f32a525f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-centered-dots-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-duotone.imageset/Contents.json deleted file mode 100644 index 18be65700..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-centered-dots-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-fill.imageset/Contents.json deleted file mode 100644 index 3cb349b5c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-centered-dots-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-light.imageset/Contents.json deleted file mode 100644 index a35f00d30..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-centered-dots-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-thin.imageset/Contents.json deleted file mode 100644 index 7fcf4d0b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chat-centered-dots-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots.imageset/Contents.json deleted file mode 100644 index 8a13fa50b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"chat-centered-dots.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-duotone.imageset/Contents.json deleted file mode 100644 index 507cb787a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"chat-centered-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-fill.imageset/Contents.json deleted file mode 100644 index dd132d30f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-centered-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-light.imageset/Contents.json deleted file mode 100644 index 06f512040..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-centered-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-bold.imageset/Contents.json deleted file mode 100644 index 67ada05cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-centered-slash-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-duotone.imageset/Contents.json deleted file mode 100644 index d695d14e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-centered-slash-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-fill.imageset/Contents.json deleted file mode 100644 index 2ddbdfb93..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"chat-centered-slash-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-light.imageset/Contents.json deleted file mode 100644 index 25c74e74d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-centered-slash-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-thin.imageset/Contents.json deleted file mode 100644 index 852515719..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-centered-slash-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash.imageset/Contents.json deleted file mode 100644 index 09c7b5fc9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"chat-centered-slash.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-bold.imageset/Contents.json deleted file mode 100644 index 6fada63ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-centered-text-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-duotone.imageset/Contents.json deleted file mode 100644 index 36672b709..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-centered-text-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-fill.imageset/Contents.json deleted file mode 100644 index ea099e961..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"chat-centered-text-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-light.imageset/Contents.json deleted file mode 100644 index 575f289c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-centered-text-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-thin.imageset/Contents.json deleted file mode 100644 index 294de33b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-centered-text-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text.imageset/Contents.json deleted file mode 100644 index 22b319f6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"chat-centered-text.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-thin.imageset/Contents.json deleted file mode 100644 index 2302b8d11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"chat-centered-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered.imageset/Contents.json deleted file mode 100644 index 2bc6f030c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-centered.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-bold.imageset/Contents.json deleted file mode 100644 index bb299ec77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"chat-circle-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-bold.imageset/Contents.json deleted file mode 100644 index 5f8de2625..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-circle-dots-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-duotone.imageset/Contents.json deleted file mode 100644 index 4b4650d42..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-circle-dots-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-fill.imageset/Contents.json deleted file mode 100644 index 55fefb07e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-circle-dots-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-light.imageset/Contents.json deleted file mode 100644 index b9d681234..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-circle-dots-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-thin.imageset/Contents.json deleted file mode 100644 index 28db1eb49..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chat-circle-dots-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots.imageset/Contents.json deleted file mode 100644 index 84dd8ec09..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-circle-dots.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-duotone.imageset/Contents.json deleted file mode 100644 index 12893962a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-circle-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-fill.imageset/Contents.json deleted file mode 100644 index c415de9fe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-circle-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-light.imageset/Contents.json deleted file mode 100644 index 9d7071d11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-circle-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-bold.imageset/Contents.json deleted file mode 100644 index ef8544030..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chat-circle-slash-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-duotone.imageset/Contents.json deleted file mode 100644 index 9a62f4240..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-circle-slash-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-fill.imageset/Contents.json deleted file mode 100644 index 216252214..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-circle-slash-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-light.imageset/Contents.json deleted file mode 100644 index 7c0c57313..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chat-circle-slash-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-thin.imageset/Contents.json deleted file mode 100644 index 2c16aae16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-circle-slash-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash.imageset/Contents.json deleted file mode 100644 index 65f409beb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-circle-slash.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-bold.imageset/Contents.json deleted file mode 100644 index 2688dfc63..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chat-circle-text-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-duotone.imageset/Contents.json deleted file mode 100644 index 369eabd97..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"chat-circle-text-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-fill.imageset/Contents.json deleted file mode 100644 index 7c72be7e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chat-circle-text-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-light.imageset/Contents.json deleted file mode 100644 index adda7c1f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-circle-text-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-thin.imageset/Contents.json deleted file mode 100644 index 384662189..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-circle-text-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text.imageset/Contents.json deleted file mode 100644 index 5de8702be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-circle-text.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-thin.imageset/Contents.json deleted file mode 100644 index e44d13183..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-circle-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle.imageset/Contents.json deleted file mode 100644 index 13a87c2bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chat-circle.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-bold.imageset/Contents.json deleted file mode 100644 index d03b07fca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-dots-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-duotone.imageset/Contents.json deleted file mode 100644 index aea903bf6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-dots-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-fill.imageset/Contents.json deleted file mode 100644 index 4090b8d96..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-dots-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-light.imageset/Contents.json deleted file mode 100644 index 372abba17..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"chat-dots-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-thin.imageset/Contents.json deleted file mode 100644 index f05dc37c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-dots-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots.imageset/Contents.json deleted file mode 100644 index 6e381e0b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-dots.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-duotone.imageset/Contents.json deleted file mode 100644 index 04e7d4c07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-fill.imageset/Contents.json deleted file mode 100644 index 5d6aad5cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-light.imageset/Contents.json deleted file mode 100644 index 0b04f344f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"chat-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-bold.imageset/Contents.json deleted file mode 100644 index e5aa2872c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"chat-slash-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-duotone.imageset/Contents.json deleted file mode 100644 index 6a8bd376f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"chat-slash-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-fill.imageset/Contents.json deleted file mode 100644 index 4e7eb5e99..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-slash-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-light.imageset/Contents.json deleted file mode 100644 index 4a19de4ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chat-slash-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-thin.imageset/Contents.json deleted file mode 100644 index 78c76549a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"chat-slash-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash.imageset/Contents.json deleted file mode 100644 index 4dd416ebe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"chat-slash.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-bold.imageset/Contents.json deleted file mode 100644 index d30863188..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"chat-teardrop-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-bold.imageset/Contents.json deleted file mode 100644 index 8d2f5d3c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-teardrop-dots-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-duotone.imageset/Contents.json deleted file mode 100644 index 9de069b79..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"chat-teardrop-dots-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-fill.imageset/Contents.json deleted file mode 100644 index 4e16d07ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-teardrop-dots-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-light.imageset/Contents.json deleted file mode 100644 index 6c986545c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"chat-teardrop-dots-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-thin.imageset/Contents.json deleted file mode 100644 index 16644b4fe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"chat-teardrop-dots-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots.imageset/Contents.json deleted file mode 100644 index bbf848bc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chat-teardrop-dots.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-duotone.imageset/Contents.json deleted file mode 100644 index 096e882eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-teardrop-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-fill.imageset/Contents.json deleted file mode 100644 index a0d5bac99..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-teardrop-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-light.imageset/Contents.json deleted file mode 100644 index 2545fc0d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"chat-teardrop-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-bold.imageset/Contents.json deleted file mode 100644 index 711797af9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chat-teardrop-slash-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-duotone.imageset/Contents.json deleted file mode 100644 index cb1390217..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"chat-teardrop-slash-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-fill.imageset/Contents.json deleted file mode 100644 index 5eb3071b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-teardrop-slash-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-light.imageset/Contents.json deleted file mode 100644 index 736849983..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-teardrop-slash-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-thin.imageset/Contents.json deleted file mode 100644 index b15201867..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-teardrop-slash-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash.imageset/Contents.json deleted file mode 100644 index b21a8bf4f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"chat-teardrop-slash.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-bold.imageset/Contents.json deleted file mode 100644 index acdbec7aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"chat-teardrop-text-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-duotone.imageset/Contents.json deleted file mode 100644 index bba5e05a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-teardrop-text-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-fill.imageset/Contents.json deleted file mode 100644 index 5fa4e63b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-teardrop-text-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-light.imageset/Contents.json deleted file mode 100644 index 4dfe3bf64..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chat-teardrop-text-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-thin.imageset/Contents.json deleted file mode 100644 index a24410643..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-teardrop-text-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text.imageset/Contents.json deleted file mode 100644 index 55b47b35e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-teardrop-text.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-thin.imageset/Contents.json deleted file mode 100644 index 98595ac2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-teardrop-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop.imageset/Contents.json deleted file mode 100644 index ac1340a8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-teardrop.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-bold.imageset/Contents.json deleted file mode 100644 index 6df470736..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-text-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-duotone.imageset/Contents.json deleted file mode 100644 index a22c50bc0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-text-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-fill.imageset/Contents.json deleted file mode 100644 index a8bc3ae64..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"chat-text-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-light.imageset/Contents.json deleted file mode 100644 index eb77f29ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chat-text-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-thin.imageset/Contents.json deleted file mode 100644 index bfb426a6c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"chat-text-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text.imageset/Contents.json deleted file mode 100644 index b27fad89d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chat-text.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-thin.imageset/Contents.json deleted file mode 100644 index b21fa687f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chat-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat.imageset/Contents.json deleted file mode 100644 index ea707b13c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chat.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-bold.imageset/Contents.json deleted file mode 100644 index 7194db035..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"chats-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-bold.imageset/Contents.json deleted file mode 100644 index 6811ede97..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chats-circle-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-duotone.imageset/Contents.json deleted file mode 100644 index 75b24310d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chats-circle-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-fill.imageset/Contents.json deleted file mode 100644 index d0771b65c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chats-circle-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-light.imageset/Contents.json deleted file mode 100644 index 06a67aa37..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chats-circle-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-thin.imageset/Contents.json deleted file mode 100644 index 1b13406cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chats-circle-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle.imageset/Contents.json deleted file mode 100644 index 41789923f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chats-circle.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-duotone.imageset/Contents.json deleted file mode 100644 index 48ba5c793..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chats-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-fill.imageset/Contents.json deleted file mode 100644 index 30c342a8c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chats-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-light.imageset/Contents.json deleted file mode 100644 index 066975d86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chats-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-bold.imageset/Contents.json deleted file mode 100644 index f7a68e4ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chats-teardrop-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-duotone.imageset/Contents.json deleted file mode 100644 index 19fd652ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chats-teardrop-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-fill.imageset/Contents.json deleted file mode 100644 index 58e62f52f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chats-teardrop-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-light.imageset/Contents.json deleted file mode 100644 index 18e39c0ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chats-teardrop-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-thin.imageset/Contents.json deleted file mode 100644 index f87133f12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chats-teardrop-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop.imageset/Contents.json deleted file mode 100644 index f7a8d0d6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chats-teardrop.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-thin.imageset/Contents.json deleted file mode 100644 index a508a9791..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chats-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats.imageset/Contents.json deleted file mode 100644 index e8661212d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"chats.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-bold.imageset/Contents.json deleted file mode 100644 index d687a90fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"check-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-bold.imageset/Contents.json deleted file mode 100644 index 45fc667b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"check-circle-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-duotone.imageset/Contents.json deleted file mode 100644 index 591f3d377..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"check-circle-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-fill.imageset/Contents.json deleted file mode 100644 index 1168860c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"check-circle-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-light.imageset/Contents.json deleted file mode 100644 index f922c02f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"check-circle-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-thin.imageset/Contents.json deleted file mode 100644 index d1a723194..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"check-circle-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle.imageset/Contents.json deleted file mode 100644 index fa67e0303..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"check-circle.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-duotone.imageset/Contents.json deleted file mode 100644 index 679fe0a96..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"check-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-bold.imageset/Contents.json deleted file mode 100644 index 57ed6bae2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"check-fat-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-duotone.imageset/Contents.json deleted file mode 100644 index dfdee9648..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"check-fat-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-fill.imageset/Contents.json deleted file mode 100644 index 803d88526..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"check-fat-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-light.imageset/Contents.json deleted file mode 100644 index 5bae2da82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"check-fat-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-thin.imageset/Contents.json deleted file mode 100644 index fc348ef79..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"check-fat-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat.imageset/Contents.json deleted file mode 100644 index ddea1727d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"check-fat.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fill.imageset/Contents.json deleted file mode 100644 index 7b62faa00..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"check-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-light.imageset/Contents.json deleted file mode 100644 index 3d3678374..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"check-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-bold.imageset/Contents.json deleted file mode 100644 index 4b0a5f94b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"check-square-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-duotone.imageset/Contents.json deleted file mode 100644 index 89e145aa0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"check-square-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-fill.imageset/Contents.json deleted file mode 100644 index 5cb79067a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"check-square-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-light.imageset/Contents.json deleted file mode 100644 index 8e9bdb092..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"check-square-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-bold.imageset/Contents.json deleted file mode 100644 index 64d0bb75e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"check-square-offset-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-duotone.imageset/Contents.json deleted file mode 100644 index 541b5f219..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"check-square-offset-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-fill.imageset/Contents.json deleted file mode 100644 index b44bb98e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"check-square-offset-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-light.imageset/Contents.json deleted file mode 100644 index 285fc4a32..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"check-square-offset-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-thin.imageset/Contents.json deleted file mode 100644 index 50cb84bed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"check-square-offset-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset.imageset/Contents.json deleted file mode 100644 index a9047f511..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"check-square-offset.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-thin.imageset/Contents.json deleted file mode 100644 index 559fca362..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"check-square-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square.imageset/Contents.json deleted file mode 100644 index 745cccaa6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"check-square.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-thin.imageset/Contents.json deleted file mode 100644 index 8f2333aae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"check-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check.imageset/Contents.json deleted file mode 100644 index 7c379a8e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"check.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-bold.imageset/Contents.json deleted file mode 100644 index 838a8dbe4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"checkerboard-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-duotone.imageset/Contents.json deleted file mode 100644 index 2111c4ee3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"checkerboard-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-fill.imageset/Contents.json deleted file mode 100644 index 6341b0232..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"checkerboard-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-light.imageset/Contents.json deleted file mode 100644 index b0c42ec51..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"checkerboard-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-thin.imageset/Contents.json deleted file mode 100644 index 5d530beae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"checkerboard-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard.imageset/Contents.json deleted file mode 100644 index 80a98b3b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"checkerboard.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-bold.imageset/Contents.json deleted file mode 100644 index 9117feb72..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"checks-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-duotone.imageset/Contents.json deleted file mode 100644 index 089e63619..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"checks-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-fill.imageset/Contents.json deleted file mode 100644 index 2eb2cd6ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"checks-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-light.imageset/Contents.json deleted file mode 100644 index affe37599..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"checks-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-thin.imageset/Contents.json deleted file mode 100644 index c2bd7dec1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"checks-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks.imageset/Contents.json deleted file mode 100644 index 29a93ea17..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"checks.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-bold.imageset/Contents.json deleted file mode 100644 index 7d3b53bb4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cheers-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-duotone.imageset/Contents.json deleted file mode 100644 index b1ea88279..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cheers-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-fill.imageset/Contents.json deleted file mode 100644 index 9a10901dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cheers-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-light.imageset/Contents.json deleted file mode 100644 index decfaa886..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cheers-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-thin.imageset/Contents.json deleted file mode 100644 index c7cfd16ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cheers-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers.imageset/Contents.json deleted file mode 100644 index 41c4d10bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cheers.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-bold.imageset/Contents.json deleted file mode 100644 index 9f65ea290..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cheese-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-duotone.imageset/Contents.json deleted file mode 100644 index 5c729796f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cheese-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-fill.imageset/Contents.json deleted file mode 100644 index e66436b11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cheese-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-light.imageset/Contents.json deleted file mode 100644 index 002d755ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"cheese-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-thin.imageset/Contents.json deleted file mode 100644 index 56d3b5087..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cheese-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese.imageset/Contents.json deleted file mode 100644 index 95c3a1862..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cheese.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-bold.imageset/Contents.json deleted file mode 100644 index 2bdb8b70d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"chef-hat-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-duotone.imageset/Contents.json deleted file mode 100644 index 9ea338a10..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"chef-hat-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-fill.imageset/Contents.json deleted file mode 100644 index 5ab389ea5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"chef-hat-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-light.imageset/Contents.json deleted file mode 100644 index a2e0ef183..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chef-hat-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-thin.imageset/Contents.json deleted file mode 100644 index f274ee9e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"chef-hat-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat.imageset/Contents.json deleted file mode 100644 index 1ea638614..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"chef-hat.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-bold.imageset/Contents.json deleted file mode 100644 index 078afd807..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cherries-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-duotone.imageset/Contents.json deleted file mode 100644 index 9056c5c8c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cherries-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-fill.imageset/Contents.json deleted file mode 100644 index 4be0545ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cherries-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-light.imageset/Contents.json deleted file mode 100644 index b5127801b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cherries-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-thin.imageset/Contents.json deleted file mode 100644 index 91f763cb7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cherries-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries.imageset/Contents.json deleted file mode 100644 index 9bd48f804..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cherries.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-bold.imageset/Contents.json deleted file mode 100644 index 3ac984218..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"church-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-duotone.imageset/Contents.json deleted file mode 100644 index fcad68b7e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"church-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-fill.imageset/Contents.json deleted file mode 100644 index dacb93040..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"church-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-light.imageset/Contents.json deleted file mode 100644 index 815d3d040..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"church-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-thin.imageset/Contents.json deleted file mode 100644 index 682474703..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"church-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church.imageset/Contents.json deleted file mode 100644 index 7d071c2b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"church.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-bold.imageset/Contents.json deleted file mode 100644 index df44c6d7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cigarette-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-duotone.imageset/Contents.json deleted file mode 100644 index b82680f0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cigarette-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-fill.imageset/Contents.json deleted file mode 100644 index a91af0f81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cigarette-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-light.imageset/Contents.json deleted file mode 100644 index c8eec8b26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cigarette-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-bold.imageset/Contents.json deleted file mode 100644 index 76d8a2c74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cigarette-slash-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-duotone.imageset/Contents.json deleted file mode 100644 index d66c273a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cigarette-slash-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-fill.imageset/Contents.json deleted file mode 100644 index 173f28ade..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cigarette-slash-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-light.imageset/Contents.json deleted file mode 100644 index 6f7dcdfb2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cigarette-slash-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-thin.imageset/Contents.json deleted file mode 100644 index 911be1a89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cigarette-slash-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash.imageset/Contents.json deleted file mode 100644 index 8f5550327..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cigarette-slash.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-thin.imageset/Contents.json deleted file mode 100644 index eda213490..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cigarette-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette.imageset/Contents.json deleted file mode 100644 index e994a596b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cigarette.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-bold.imageset/Contents.json deleted file mode 100644 index 6e7c9ea61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circle-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-bold.imageset/Contents.json deleted file mode 100644 index 14297f40a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"circle-dashed-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-duotone.imageset/Contents.json deleted file mode 100644 index bffaf98b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"circle-dashed-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-fill.imageset/Contents.json deleted file mode 100644 index 1da75206e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"circle-dashed-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-light.imageset/Contents.json deleted file mode 100644 index 8d8e741a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circle-dashed-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-thin.imageset/Contents.json deleted file mode 100644 index 441a098b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circle-dashed-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed.imageset/Contents.json deleted file mode 100644 index 22a8403d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"circle-dashed.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-duotone.imageset/Contents.json deleted file mode 100644 index 87c67f296..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circle-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-fill.imageset/Contents.json deleted file mode 100644 index 08d12009e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"circle-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-bold.imageset/Contents.json deleted file mode 100644 index a0278569f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"circle-half-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-duotone.imageset/Contents.json deleted file mode 100644 index 95e7f1a49..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"circle-half-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-fill.imageset/Contents.json deleted file mode 100644 index 340665641..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"circle-half-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-light.imageset/Contents.json deleted file mode 100644 index 8fc0b9b53..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"circle-half-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-thin.imageset/Contents.json deleted file mode 100644 index 61393f48d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"circle-half-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-bold.imageset/Contents.json deleted file mode 100644 index 4cee45f6a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"circle-half-tilt-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-duotone.imageset/Contents.json deleted file mode 100644 index 20502e100..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"circle-half-tilt-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-fill.imageset/Contents.json deleted file mode 100644 index bb31e4f44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circle-half-tilt-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-light.imageset/Contents.json deleted file mode 100644 index 8c8446adb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"circle-half-tilt-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-thin.imageset/Contents.json deleted file mode 100644 index 8bf001784..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"circle-half-tilt-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt.imageset/Contents.json deleted file mode 100644 index fdfd156b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"circle-half-tilt.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half.imageset/Contents.json deleted file mode 100644 index 2321aa9db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"circle-half.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-light.imageset/Contents.json deleted file mode 100644 index 40bf2ba4e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circle-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-bold.imageset/Contents.json deleted file mode 100644 index 06b4cea84..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"circle-notch-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-duotone.imageset/Contents.json deleted file mode 100644 index 8c6291c71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"circle-notch-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-fill.imageset/Contents.json deleted file mode 100644 index 8af16a929..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"circle-notch-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-light.imageset/Contents.json deleted file mode 100644 index 585f5c52c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circle-notch-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-thin.imageset/Contents.json deleted file mode 100644 index 30c3e6757..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"circle-notch-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch.imageset/Contents.json deleted file mode 100644 index f500044ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"circle-notch.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-thin.imageset/Contents.json deleted file mode 100644 index 47ad26a4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"circle-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle.imageset/Contents.json deleted file mode 100644 index 7e1e9fedd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"circle.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-bold.imageset/Contents.json deleted file mode 100644 index 8da7ae809..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"circles-four-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-duotone.imageset/Contents.json deleted file mode 100644 index fa31463c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"circles-four-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-fill.imageset/Contents.json deleted file mode 100644 index e3494cb2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"circles-four-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-light.imageset/Contents.json deleted file mode 100644 index cef3ea8b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"circles-four-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-thin.imageset/Contents.json deleted file mode 100644 index 34a2d6b92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circles-four-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four.imageset/Contents.json deleted file mode 100644 index 1166d126e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circles-four.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-bold.imageset/Contents.json deleted file mode 100644 index 2e1fd4b05..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"circles-three-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-duotone.imageset/Contents.json deleted file mode 100644 index f368d15bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circles-three-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-fill.imageset/Contents.json deleted file mode 100644 index 927c17488..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circles-three-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-light.imageset/Contents.json deleted file mode 100644 index 87cba2395..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"circles-three-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-bold.imageset/Contents.json deleted file mode 100644 index 95856d2f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"circles-three-plus-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-duotone.imageset/Contents.json deleted file mode 100644 index f85d37184..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circles-three-plus-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-fill.imageset/Contents.json deleted file mode 100644 index adafcc872..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circles-three-plus-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-light.imageset/Contents.json deleted file mode 100644 index 6c1d69869..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circles-three-plus-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-thin.imageset/Contents.json deleted file mode 100644 index 83bc2df70..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"circles-three-plus-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus.imageset/Contents.json deleted file mode 100644 index f04ceced4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"circles-three-plus.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-thin.imageset/Contents.json deleted file mode 100644 index 7d5b31024..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circles-three-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three.imageset/Contents.json deleted file mode 100644 index ae7d2da2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circles-three.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-bold.imageset/Contents.json deleted file mode 100644 index 7a25db9d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"circuitry-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-duotone.imageset/Contents.json deleted file mode 100644 index 3e569c9b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"circuitry-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-fill.imageset/Contents.json deleted file mode 100644 index de641dd7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circuitry-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-light.imageset/Contents.json deleted file mode 100644 index 2de2101e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"circuitry-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-thin.imageset/Contents.json deleted file mode 100644 index 2ef2419c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circuitry-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry.imageset/Contents.json deleted file mode 100644 index 3185dc18f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"circuitry.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-bold.imageset/Contents.json deleted file mode 100644 index 22d196174..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"city-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-duotone.imageset/Contents.json deleted file mode 100644 index 0952ce48e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"city-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-fill.imageset/Contents.json deleted file mode 100644 index 5c3d856b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"city-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-light.imageset/Contents.json deleted file mode 100644 index 207eb0fff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"city-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-thin.imageset/Contents.json deleted file mode 100644 index 39d101169..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"city-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city.imageset/Contents.json deleted file mode 100644 index 263a32a82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"city.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-bold.imageset/Contents.json deleted file mode 100644 index 829c35832..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"clipboard-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-duotone.imageset/Contents.json deleted file mode 100644 index c2e3d01da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"clipboard-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-fill.imageset/Contents.json deleted file mode 100644 index eabbffc89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"clipboard-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-light.imageset/Contents.json deleted file mode 100644 index fb1c5c1a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"clipboard-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-bold.imageset/Contents.json deleted file mode 100644 index 039e536e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"clipboard-text-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-duotone.imageset/Contents.json deleted file mode 100644 index db4147962..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"clipboard-text-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-fill.imageset/Contents.json deleted file mode 100644 index b011f5bf2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"clipboard-text-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-light.imageset/Contents.json deleted file mode 100644 index 94e2ccff2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"clipboard-text-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-thin.imageset/Contents.json deleted file mode 100644 index 7375c3bce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"clipboard-text-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text.imageset/Contents.json deleted file mode 100644 index 0af9d590d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"clipboard-text.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-thin.imageset/Contents.json deleted file mode 100644 index 4c5a44a46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"clipboard-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard.imageset/Contents.json deleted file mode 100644 index 22383c935..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"clipboard.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-bold.imageset/Contents.json deleted file mode 100644 index f8c6cd23e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"clock-afternoon-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-duotone.imageset/Contents.json deleted file mode 100644 index 475589354..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"clock-afternoon-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-fill.imageset/Contents.json deleted file mode 100644 index ce214138c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"clock-afternoon-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-light.imageset/Contents.json deleted file mode 100644 index 2c3b13101..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"clock-afternoon-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-thin.imageset/Contents.json deleted file mode 100644 index 83739735c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"clock-afternoon-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon.imageset/Contents.json deleted file mode 100644 index 42a2215bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"clock-afternoon.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-bold.imageset/Contents.json deleted file mode 100644 index 815c1da46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"clock-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-bold.imageset/Contents.json deleted file mode 100644 index 2d156d12a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"clock-clockwise-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-duotone.imageset/Contents.json deleted file mode 100644 index 1c74b2bcc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"clock-clockwise-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-fill.imageset/Contents.json deleted file mode 100644 index 489ee01ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"clock-clockwise-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-light.imageset/Contents.json deleted file mode 100644 index 9e6b7a445..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"clock-clockwise-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-thin.imageset/Contents.json deleted file mode 100644 index f47f7d0c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"clock-clockwise-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise.imageset/Contents.json deleted file mode 100644 index cdf65424f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"clock-clockwise.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-bold.imageset/Contents.json deleted file mode 100644 index 9093860a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"clock-countdown-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-duotone.imageset/Contents.json deleted file mode 100644 index bc8c0753c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"clock-countdown-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-fill.imageset/Contents.json deleted file mode 100644 index 9c4f572ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"clock-countdown-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-light.imageset/Contents.json deleted file mode 100644 index 963500cad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"clock-countdown-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-thin.imageset/Contents.json deleted file mode 100644 index 9aef7a568..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"clock-countdown-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown.imageset/Contents.json deleted file mode 100644 index f3509510b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"clock-countdown.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-bold.imageset/Contents.json deleted file mode 100644 index 62da5a279..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"clock-counter-clockwise-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-duotone.imageset/Contents.json deleted file mode 100644 index a71278116..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"clock-counter-clockwise-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-fill.imageset/Contents.json deleted file mode 100644 index ef57ffc51..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"clock-counter-clockwise-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-light.imageset/Contents.json deleted file mode 100644 index 8a95fa355..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"clock-counter-clockwise-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-thin.imageset/Contents.json deleted file mode 100644 index 4edbbb50c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"clock-counter-clockwise-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise.imageset/Contents.json deleted file mode 100644 index 00a4bb1c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"clock-counter-clockwise.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-duotone.imageset/Contents.json deleted file mode 100644 index 1890903d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"clock-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-fill.imageset/Contents.json deleted file mode 100644 index 968f71aa3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"clock-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-light.imageset/Contents.json deleted file mode 100644 index 63d0a3c6a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"clock-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-thin.imageset/Contents.json deleted file mode 100644 index eb806d9ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"clock-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-bold.imageset/Contents.json deleted file mode 100644 index caa4c005d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"clock-user-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-duotone.imageset/Contents.json deleted file mode 100644 index 7ad29e6b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"clock-user-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-fill.imageset/Contents.json deleted file mode 100644 index ce1e7e184..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"clock-user-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-light.imageset/Contents.json deleted file mode 100644 index cf0ab7e96..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"clock-user-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-thin.imageset/Contents.json deleted file mode 100644 index 97b475376..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"clock-user-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user.imageset/Contents.json deleted file mode 100644 index 41fe482bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"clock-user.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock.imageset/Contents.json deleted file mode 100644 index f117650e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"clock.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-bold.imageset/Contents.json deleted file mode 100644 index c29fe6f21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"closed-captioning-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-duotone.imageset/Contents.json deleted file mode 100644 index e8fdd711d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"closed-captioning-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-fill.imageset/Contents.json deleted file mode 100644 index 1e0625cca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"closed-captioning-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-light.imageset/Contents.json deleted file mode 100644 index 8e4a9232a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"closed-captioning-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-thin.imageset/Contents.json deleted file mode 100644 index 2ceef2bc7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"closed-captioning-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning.imageset/Contents.json deleted file mode 100644 index 96f150009..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"closed-captioning.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-bold.imageset/Contents.json deleted file mode 100644 index 55d4190a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cloud-arrow-down-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-duotone.imageset/Contents.json deleted file mode 100644 index 87b2fb63c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cloud-arrow-down-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-fill.imageset/Contents.json deleted file mode 100644 index bde122b63..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cloud-arrow-down-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-light.imageset/Contents.json deleted file mode 100644 index bdb9cbaf6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cloud-arrow-down-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-thin.imageset/Contents.json deleted file mode 100644 index 4117e8cbf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cloud-arrow-down-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down.imageset/Contents.json deleted file mode 100644 index 49849eab4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cloud-arrow-down.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-bold.imageset/Contents.json deleted file mode 100644 index 578749499..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"cloud-arrow-up-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-duotone.imageset/Contents.json deleted file mode 100644 index be8c94861..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cloud-arrow-up-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-fill.imageset/Contents.json deleted file mode 100644 index 544a43aab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cloud-arrow-up-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-light.imageset/Contents.json deleted file mode 100644 index 28cd4b196..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cloud-arrow-up-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-thin.imageset/Contents.json deleted file mode 100644 index a2c2a62b1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-arrow-up-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up.imageset/Contents.json deleted file mode 100644 index 38f11b9bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cloud-arrow-up.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-bold.imageset/Contents.json deleted file mode 100644 index e2f2f90da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cloud-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-bold.imageset/Contents.json deleted file mode 100644 index 9a4083315..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-check-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-duotone.imageset/Contents.json deleted file mode 100644 index dc91f4e0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cloud-check-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-fill.imageset/Contents.json deleted file mode 100644 index b2ddbb6d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-check-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-light.imageset/Contents.json deleted file mode 100644 index c29b09b81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-check-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-thin.imageset/Contents.json deleted file mode 100644 index ef6e8d2c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cloud-check-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check.imageset/Contents.json deleted file mode 100644 index df16f93de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cloud-check.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-duotone.imageset/Contents.json deleted file mode 100644 index 195e4b143..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fill.imageset/Contents.json deleted file mode 100644 index 512fba028..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cloud-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-bold.imageset/Contents.json deleted file mode 100644 index 88253ede7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"cloud-fog-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-duotone.imageset/Contents.json deleted file mode 100644 index 44ae57e9c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-fog-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-fill.imageset/Contents.json deleted file mode 100644 index 11ec97081..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-fog-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-light.imageset/Contents.json deleted file mode 100644 index 3bf50ab83..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-fog-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-thin.imageset/Contents.json deleted file mode 100644 index 62ac613f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"cloud-fog-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog.imageset/Contents.json deleted file mode 100644 index c9c5fa4fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cloud-fog.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-light.imageset/Contents.json deleted file mode 100644 index e7dc1a23a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-bold.imageset/Contents.json deleted file mode 100644 index 325163e28..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-lightning-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-duotone.imageset/Contents.json deleted file mode 100644 index e50dd49f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-lightning-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-fill.imageset/Contents.json deleted file mode 100644 index 48155e43b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cloud-lightning-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-light.imageset/Contents.json deleted file mode 100644 index b8224e1d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cloud-lightning-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-thin.imageset/Contents.json deleted file mode 100644 index 37bafa0ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cloud-lightning-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning.imageset/Contents.json deleted file mode 100644 index eb49a601a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cloud-lightning.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-bold.imageset/Contents.json deleted file mode 100644 index 8ea936164..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cloud-moon-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-duotone.imageset/Contents.json deleted file mode 100644 index 59087be71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-moon-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-fill.imageset/Contents.json deleted file mode 100644 index c5db90b03..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-moon-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-light.imageset/Contents.json deleted file mode 100644 index 3d7c80445..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-moon-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-thin.imageset/Contents.json deleted file mode 100644 index 28487b299..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cloud-moon-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon.imageset/Contents.json deleted file mode 100644 index 74e0992c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cloud-moon.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-bold.imageset/Contents.json deleted file mode 100644 index 927dcae50..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-rain-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-duotone.imageset/Contents.json deleted file mode 100644 index e7e0e206b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-rain-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-fill.imageset/Contents.json deleted file mode 100644 index 4adca1cb7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cloud-rain-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-light.imageset/Contents.json deleted file mode 100644 index 511f1df94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-rain-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-thin.imageset/Contents.json deleted file mode 100644 index 278633ae6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cloud-rain-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain.imageset/Contents.json deleted file mode 100644 index c800b0a47..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cloud-rain.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-bold.imageset/Contents.json deleted file mode 100644 index 7c0fba537..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-slash-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-duotone.imageset/Contents.json deleted file mode 100644 index 5dcfa910e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-slash-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-fill.imageset/Contents.json deleted file mode 100644 index 47a57ca87..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-slash-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-light.imageset/Contents.json deleted file mode 100644 index de9783929..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cloud-slash-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-thin.imageset/Contents.json deleted file mode 100644 index 55c29086a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-slash-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash.imageset/Contents.json deleted file mode 100644 index edd16ae60..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cloud-slash.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-bold.imageset/Contents.json deleted file mode 100644 index c784b72f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cloud-snow-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-duotone.imageset/Contents.json deleted file mode 100644 index fab47b88e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cloud-snow-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-fill.imageset/Contents.json deleted file mode 100644 index 0199a9940..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"cloud-snow-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-light.imageset/Contents.json deleted file mode 100644 index 1c0232423..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cloud-snow-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-thin.imageset/Contents.json deleted file mode 100644 index 6596dd8f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cloud-snow-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow.imageset/Contents.json deleted file mode 100644 index 082f63f7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"cloud-snow.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-bold.imageset/Contents.json deleted file mode 100644 index 3edcc637f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-sun-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-duotone.imageset/Contents.json deleted file mode 100644 index d497bd6f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-sun-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-fill.imageset/Contents.json deleted file mode 100644 index 25675928c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cloud-sun-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-light.imageset/Contents.json deleted file mode 100644 index 39a4872f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-sun-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-thin.imageset/Contents.json deleted file mode 100644 index b1142de0c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-sun-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun.imageset/Contents.json deleted file mode 100644 index 54b6050ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-sun.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-thin.imageset/Contents.json deleted file mode 100644 index b311292ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cloud-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-bold.imageset/Contents.json deleted file mode 100644 index 61c789de0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-warning-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-duotone.imageset/Contents.json deleted file mode 100644 index 477825537..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-warning-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-fill.imageset/Contents.json deleted file mode 100644 index b4e1c378b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"cloud-warning-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-light.imageset/Contents.json deleted file mode 100644 index f7682aa16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-warning-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-thin.imageset/Contents.json deleted file mode 100644 index b082777ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cloud-warning-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning.imageset/Contents.json deleted file mode 100644 index c7c772fcb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cloud-warning.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-bold.imageset/Contents.json deleted file mode 100644 index 3a86ee9ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"cloud-x-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-duotone.imageset/Contents.json deleted file mode 100644 index 1b5d00a6f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-x-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-fill.imageset/Contents.json deleted file mode 100644 index c6f772d75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"cloud-x-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-light.imageset/Contents.json deleted file mode 100644 index c3cc4fdea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cloud-x-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-thin.imageset/Contents.json deleted file mode 100644 index 17d57d4a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cloud-x-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x.imageset/Contents.json deleted file mode 100644 index c6e66ad5c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cloud-x.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud.imageset/Contents.json deleted file mode 100644 index f6135cdf4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cloud.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-bold.imageset/Contents.json deleted file mode 100644 index 4aaeb81a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"clover-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-duotone.imageset/Contents.json deleted file mode 100644 index 1ae2c2ab9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"clover-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-fill.imageset/Contents.json deleted file mode 100644 index c355e8f43..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"clover-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-light.imageset/Contents.json deleted file mode 100644 index 749c256bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"clover-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-thin.imageset/Contents.json deleted file mode 100644 index b5eec9048..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"clover-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover.imageset/Contents.json deleted file mode 100644 index 9521f9f62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"clover.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-bold.imageset/Contents.json deleted file mode 100644 index 8c2c7ad6d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"club-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-duotone.imageset/Contents.json deleted file mode 100644 index ad06eabb2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"club-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-fill.imageset/Contents.json deleted file mode 100644 index 22559465a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"club-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-light.imageset/Contents.json deleted file mode 100644 index 1c15077d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"club-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-thin.imageset/Contents.json deleted file mode 100644 index 3e95603bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"club-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club.imageset/Contents.json deleted file mode 100644 index 1635f755e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"club.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-bold.imageset/Contents.json deleted file mode 100644 index 5c2066695..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"coat-hanger-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-duotone.imageset/Contents.json deleted file mode 100644 index 56c672121..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"coat-hanger-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-fill.imageset/Contents.json deleted file mode 100644 index cb10aa23d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"coat-hanger-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-light.imageset/Contents.json deleted file mode 100644 index 4e32fb909..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"coat-hanger-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-thin.imageset/Contents.json deleted file mode 100644 index 12a6edf50..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"coat-hanger-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger.imageset/Contents.json deleted file mode 100644 index b8039900f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"coat-hanger.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-bold.imageset/Contents.json deleted file mode 100644 index 4c11a9d87..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"coda-logo-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-duotone.imageset/Contents.json deleted file mode 100644 index b1f940741..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"coda-logo-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-fill.imageset/Contents.json deleted file mode 100644 index 3febc552f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"coda-logo-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-light.imageset/Contents.json deleted file mode 100644 index 85b700b82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"coda-logo-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-thin.imageset/Contents.json deleted file mode 100644 index 8a0796262..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"coda-logo-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo.imageset/Contents.json deleted file mode 100644 index f4d517a9d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"coda-logo.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-bold.imageset/Contents.json deleted file mode 100644 index ccb67249d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"code-block-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-duotone.imageset/Contents.json deleted file mode 100644 index 9ca123bbf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"code-block-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-fill.imageset/Contents.json deleted file mode 100644 index 5fba93f9b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"code-block-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-light.imageset/Contents.json deleted file mode 100644 index 0111dc4e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"code-block-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-thin.imageset/Contents.json deleted file mode 100644 index 264896d56..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"code-block-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block.imageset/Contents.json deleted file mode 100644 index 11670bdc8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"code-block.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-bold.imageset/Contents.json deleted file mode 100644 index 89558a69f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"code-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-duotone.imageset/Contents.json deleted file mode 100644 index 5ee75a51d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"code-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-fill.imageset/Contents.json deleted file mode 100644 index d59f2d6cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"code-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-light.imageset/Contents.json deleted file mode 100644 index 27c2d1d13..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"code-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-bold.imageset/Contents.json deleted file mode 100644 index 77606451f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"code-simple-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-duotone.imageset/Contents.json deleted file mode 100644 index 2773ebb6c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"code-simple-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-fill.imageset/Contents.json deleted file mode 100644 index 257f8601b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"code-simple-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-light.imageset/Contents.json deleted file mode 100644 index 4ad565272..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"code-simple-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-thin.imageset/Contents.json deleted file mode 100644 index c2046b7b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"code-simple-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple.imageset/Contents.json deleted file mode 100644 index 1653724c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"code-simple.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-thin.imageset/Contents.json deleted file mode 100644 index 39550b04e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"code-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code.imageset/Contents.json deleted file mode 100644 index e97b575c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"code.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-bold.imageset/Contents.json deleted file mode 100644 index 97162985e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"codepen-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-duotone.imageset/Contents.json deleted file mode 100644 index 737d28971..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"codepen-logo-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-fill.imageset/Contents.json deleted file mode 100644 index d6bd57c7e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"codepen-logo-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-light.imageset/Contents.json deleted file mode 100644 index 1fb669bd1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"codepen-logo-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-thin.imageset/Contents.json deleted file mode 100644 index 6d0bfe7ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"codepen-logo-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo.imageset/Contents.json deleted file mode 100644 index 587680b70..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"codepen-logo.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-bold.imageset/Contents.json deleted file mode 100644 index a1fbd7617..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"codesandbox-logo-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-duotone.imageset/Contents.json deleted file mode 100644 index c6952fcd1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"codesandbox-logo-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-fill.imageset/Contents.json deleted file mode 100644 index c3c786fa9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"codesandbox-logo-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-light.imageset/Contents.json deleted file mode 100644 index 24adfa14f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"codesandbox-logo-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-thin.imageset/Contents.json deleted file mode 100644 index b9cf34e26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"codesandbox-logo-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo.imageset/Contents.json deleted file mode 100644 index 8aa235c2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"codesandbox-logo.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-bold.imageset/Contents.json deleted file mode 100644 index 04ec3845d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"coffee-bean-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-duotone.imageset/Contents.json deleted file mode 100644 index 510a0ec87..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"coffee-bean-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-fill.imageset/Contents.json deleted file mode 100644 index bddf38b1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"coffee-bean-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-light.imageset/Contents.json deleted file mode 100644 index 2e4b53886..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"coffee-bean-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-thin.imageset/Contents.json deleted file mode 100644 index 36b728972..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"coffee-bean-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean.imageset/Contents.json deleted file mode 100644 index 4cd36fbeb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"coffee-bean.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bold.imageset/Contents.json deleted file mode 100644 index 9c024a5ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"coffee-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-duotone.imageset/Contents.json deleted file mode 100644 index 2bf81d155..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"coffee-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-fill.imageset/Contents.json deleted file mode 100644 index bf53b0436..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"coffee-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-light.imageset/Contents.json deleted file mode 100644 index ba66a42ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"coffee-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-thin.imageset/Contents.json deleted file mode 100644 index 9fe33bcec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"coffee-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee.imageset/Contents.json deleted file mode 100644 index 2e4175517..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"coffee.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-bold.imageset/Contents.json deleted file mode 100644 index debca3ce8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"coin-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-duotone.imageset/Contents.json deleted file mode 100644 index 8b6b2bd5a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"coin-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-fill.imageset/Contents.json deleted file mode 100644 index bea23c186..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"coin-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-light.imageset/Contents.json deleted file mode 100644 index a422a8152..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"coin-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-thin.imageset/Contents.json deleted file mode 100644 index c2b5fc4e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"coin-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-bold.imageset/Contents.json deleted file mode 100644 index 0194cf1ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"coin-vertical-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-duotone.imageset/Contents.json deleted file mode 100644 index ca4acd250..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"coin-vertical-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-fill.imageset/Contents.json deleted file mode 100644 index 90a6f5741..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"coin-vertical-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-light.imageset/Contents.json deleted file mode 100644 index 35c468ccf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"coin-vertical-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-thin.imageset/Contents.json deleted file mode 100644 index b77f29e62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"coin-vertical-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical.imageset/Contents.json deleted file mode 100644 index 8e756ccd6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"coin-vertical.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin.imageset/Contents.json deleted file mode 100644 index a6c535609..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"coin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-bold.imageset/Contents.json deleted file mode 100644 index 4f6b60249..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"coins-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-duotone.imageset/Contents.json deleted file mode 100644 index b40802114..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"coins-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-fill.imageset/Contents.json deleted file mode 100644 index 7af898c6f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"coins-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-light.imageset/Contents.json deleted file mode 100644 index 189adfd47..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"coins-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-thin.imageset/Contents.json deleted file mode 100644 index cf8c60d16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"coins-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins.imageset/Contents.json deleted file mode 100644 index 6ee4188ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"coins.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-bold.imageset/Contents.json deleted file mode 100644 index 892d9e6dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"columns-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-duotone.imageset/Contents.json deleted file mode 100644 index d694f643d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"columns-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-fill.imageset/Contents.json deleted file mode 100644 index f20c60bba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"columns-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-light.imageset/Contents.json deleted file mode 100644 index b0ad276d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"columns-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-bold.imageset/Contents.json deleted file mode 100644 index c99a15c0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"columns-plus-left-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-duotone.imageset/Contents.json deleted file mode 100644 index 4fe785a3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"columns-plus-left-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-fill.imageset/Contents.json deleted file mode 100644 index 3b316911f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"columns-plus-left-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-light.imageset/Contents.json deleted file mode 100644 index d453b1121..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"columns-plus-left-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-thin.imageset/Contents.json deleted file mode 100644 index 6046a3fa5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"columns-plus-left-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left.imageset/Contents.json deleted file mode 100644 index d05db6811..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"columns-plus-left.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-bold.imageset/Contents.json deleted file mode 100644 index 350c88b9c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"columns-plus-right-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-duotone.imageset/Contents.json deleted file mode 100644 index b8fb3fbde..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"columns-plus-right-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-fill.imageset/Contents.json deleted file mode 100644 index df5c44f46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"columns-plus-right-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-light.imageset/Contents.json deleted file mode 100644 index a2dad77e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"columns-plus-right-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-thin.imageset/Contents.json deleted file mode 100644 index a6ce5f89a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"columns-plus-right-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right.imageset/Contents.json deleted file mode 100644 index 2a583049c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"columns-plus-right.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-thin.imageset/Contents.json deleted file mode 100644 index 9d745be92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"columns-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns.imageset/Contents.json deleted file mode 100644 index 0f239e05a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"columns.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-bold.imageset/Contents.json deleted file mode 100644 index d24786986..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"command-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-duotone.imageset/Contents.json deleted file mode 100644 index f5f7f4598..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"command-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-fill.imageset/Contents.json deleted file mode 100644 index eed3d6acc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"command-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-light.imageset/Contents.json deleted file mode 100644 index 2181ced25..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"command-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-thin.imageset/Contents.json deleted file mode 100644 index 399141c97..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"command-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command.imageset/Contents.json deleted file mode 100644 index 79ee69164..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"command.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-bold.imageset/Contents.json deleted file mode 100644 index fae0e3c58..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"compass-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-duotone.imageset/Contents.json deleted file mode 100644 index e8673da41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"compass-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-fill.imageset/Contents.json deleted file mode 100644 index a02427735..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"compass-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-light.imageset/Contents.json deleted file mode 100644 index ee81a6651..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"compass-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-bold.imageset/Contents.json deleted file mode 100644 index e6fd39b3e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"compass-rose-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-duotone.imageset/Contents.json deleted file mode 100644 index 8b5604a50..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"compass-rose-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-fill.imageset/Contents.json deleted file mode 100644 index fab2fcf7e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"compass-rose-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-light.imageset/Contents.json deleted file mode 100644 index f505d0b16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"compass-rose-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-thin.imageset/Contents.json deleted file mode 100644 index 5759a8613..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"compass-rose-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose.imageset/Contents.json deleted file mode 100644 index 2ec568833..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"compass-rose.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-thin.imageset/Contents.json deleted file mode 100644 index 8a13aae80..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"compass-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-bold.imageset/Contents.json deleted file mode 100644 index b88d30027..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"compass-tool-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-duotone.imageset/Contents.json deleted file mode 100644 index ea22a691f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"compass-tool-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-fill.imageset/Contents.json deleted file mode 100644 index 035b8f63b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"compass-tool-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-light.imageset/Contents.json deleted file mode 100644 index fab83298d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"compass-tool-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-thin.imageset/Contents.json deleted file mode 100644 index 24ab0c6ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"compass-tool-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool.imageset/Contents.json deleted file mode 100644 index da71677eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"compass-tool.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass.imageset/Contents.json deleted file mode 100644 index e307efdc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"compass.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-bold.imageset/Contents.json deleted file mode 100644 index edf3c82a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"computer-tower-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-duotone.imageset/Contents.json deleted file mode 100644 index a92f86b65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"computer-tower-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-fill.imageset/Contents.json deleted file mode 100644 index 60debf4be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"computer-tower-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-light.imageset/Contents.json deleted file mode 100644 index 5b407f136..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"computer-tower-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-thin.imageset/Contents.json deleted file mode 100644 index 594b76dcb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"computer-tower-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower.imageset/Contents.json deleted file mode 100644 index 24284e26f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"computer-tower.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-bold.imageset/Contents.json deleted file mode 100644 index d26f6768a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"confetti-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-duotone.imageset/Contents.json deleted file mode 100644 index bebc5b5b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"confetti-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-fill.imageset/Contents.json deleted file mode 100644 index 1dcfe46c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"confetti-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-light.imageset/Contents.json deleted file mode 100644 index 082a427aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"confetti-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-thin.imageset/Contents.json deleted file mode 100644 index 09f6e46ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"confetti-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti.imageset/Contents.json deleted file mode 100644 index 0ab55d0ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"confetti.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-bold.imageset/Contents.json deleted file mode 100644 index f22b7324e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"contactless-payment-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-duotone.imageset/Contents.json deleted file mode 100644 index 62d0081e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"contactless-payment-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-fill.imageset/Contents.json deleted file mode 100644 index 54d4616e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"contactless-payment-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-light.imageset/Contents.json deleted file mode 100644 index dff90de98..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"contactless-payment-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-thin.imageset/Contents.json deleted file mode 100644 index 51c2e0788..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"contactless-payment-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment.imageset/Contents.json deleted file mode 100644 index 7adfb48a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"contactless-payment.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-bold.imageset/Contents.json deleted file mode 100644 index d6f7db6c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"control-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-duotone.imageset/Contents.json deleted file mode 100644 index c9ddea90d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"control-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-fill.imageset/Contents.json deleted file mode 100644 index 09cf027ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"control-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-light.imageset/Contents.json deleted file mode 100644 index 279a70d34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"control-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-thin.imageset/Contents.json deleted file mode 100644 index 0ab104b19..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"control-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control.imageset/Contents.json deleted file mode 100644 index e53f78f5f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"control.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-bold.imageset/Contents.json deleted file mode 100644 index c0684a62c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cookie-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-duotone.imageset/Contents.json deleted file mode 100644 index 401fe842d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cookie-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-fill.imageset/Contents.json deleted file mode 100644 index e3b4fde61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cookie-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-light.imageset/Contents.json deleted file mode 100644 index 892aa6aba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cookie-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-thin.imageset/Contents.json deleted file mode 100644 index 159c4f799..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cookie-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie.imageset/Contents.json deleted file mode 100644 index 71dbb4f7a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cookie.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-bold.imageset/Contents.json deleted file mode 100644 index 784b627b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cooking-pot-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-duotone.imageset/Contents.json deleted file mode 100644 index 1fe839a58..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cooking-pot-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-fill.imageset/Contents.json deleted file mode 100644 index 19c5d3405..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cooking-pot-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-light.imageset/Contents.json deleted file mode 100644 index 4ef7cead4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cooking-pot-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-thin.imageset/Contents.json deleted file mode 100644 index 8dc3dc5ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cooking-pot-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot.imageset/Contents.json deleted file mode 100644 index 6b485e2ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cooking-pot.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-bold.imageset/Contents.json deleted file mode 100644 index 6a540490c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"copy-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-duotone.imageset/Contents.json deleted file mode 100644 index 97033ddd3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"copy-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-fill.imageset/Contents.json deleted file mode 100644 index 8541969c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"copy-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-light.imageset/Contents.json deleted file mode 100644 index ac21936aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"copy-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-bold.imageset/Contents.json deleted file mode 100644 index 00fdceb87..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"copy-simple-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-duotone.imageset/Contents.json deleted file mode 100644 index ed9731b9e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"copy-simple-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-fill.imageset/Contents.json deleted file mode 100644 index fe144277a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"copy-simple-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-light.imageset/Contents.json deleted file mode 100644 index f77382415..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"copy-simple-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-thin.imageset/Contents.json deleted file mode 100644 index a66255dd2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"copy-simple-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple.imageset/Contents.json deleted file mode 100644 index 01cff0db9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"copy-simple.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-thin.imageset/Contents.json deleted file mode 100644 index 5cd49f726..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"copy-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy.imageset/Contents.json deleted file mode 100644 index faaf7f54e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"copy.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-bold.imageset/Contents.json deleted file mode 100644 index cae36a2e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"copyleft-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-duotone.imageset/Contents.json deleted file mode 100644 index 9e0c870a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"copyleft-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-fill.imageset/Contents.json deleted file mode 100644 index 3b62bb1d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"copyleft-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-light.imageset/Contents.json deleted file mode 100644 index 34c42fabe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"copyleft-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-thin.imageset/Contents.json deleted file mode 100644 index b9ff3ea45..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"copyleft-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft.imageset/Contents.json deleted file mode 100644 index ddf566218..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"copyleft.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-bold.imageset/Contents.json deleted file mode 100644 index f64b6d673..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"copyright-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-duotone.imageset/Contents.json deleted file mode 100644 index f1a36fbf4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"copyright-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-fill.imageset/Contents.json deleted file mode 100644 index 787f0e811..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"copyright-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-light.imageset/Contents.json deleted file mode 100644 index 99a45ba27..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"copyright-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-thin.imageset/Contents.json deleted file mode 100644 index 9f36e4032..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"copyright-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright.imageset/Contents.json deleted file mode 100644 index eeb18e6f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"copyright.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-bold.imageset/Contents.json deleted file mode 100644 index cee661092..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"corners-in-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-duotone.imageset/Contents.json deleted file mode 100644 index fe320e6f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"corners-in-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-fill.imageset/Contents.json deleted file mode 100644 index 3d8a6d6e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"corners-in-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-light.imageset/Contents.json deleted file mode 100644 index e14041e1a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"corners-in-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-thin.imageset/Contents.json deleted file mode 100644 index c2351f982..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"corners-in-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in.imageset/Contents.json deleted file mode 100644 index 4313f1748..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"corners-in.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-bold.imageset/Contents.json deleted file mode 100644 index 0b5abae1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"corners-out-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-duotone.imageset/Contents.json deleted file mode 100644 index 3d8b3e9df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"corners-out-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-fill.imageset/Contents.json deleted file mode 100644 index 2d55698c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"corners-out-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-light.imageset/Contents.json deleted file mode 100644 index 6dd69913b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"corners-out-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-thin.imageset/Contents.json deleted file mode 100644 index 691dafb1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"corners-out-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out.imageset/Contents.json deleted file mode 100644 index 6b98adc4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"corners-out.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-bold.imageset/Contents.json deleted file mode 100644 index 4f6920ab7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"couch-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-duotone.imageset/Contents.json deleted file mode 100644 index 8b5bc417a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"couch-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-fill.imageset/Contents.json deleted file mode 100644 index d27866ee2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"couch-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-light.imageset/Contents.json deleted file mode 100644 index 206ebc4cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"couch-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-thin.imageset/Contents.json deleted file mode 100644 index 23d90de3b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"couch-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch.imageset/Contents.json deleted file mode 100644 index 5394a37ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"couch.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-bold.imageset/Contents.json deleted file mode 100644 index f17adfba4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"court-basketball-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-duotone.imageset/Contents.json deleted file mode 100644 index 9f2ae8607..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"court-basketball-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-fill.imageset/Contents.json deleted file mode 100644 index c44a9a609..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"court-basketball-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-light.imageset/Contents.json deleted file mode 100644 index d0c45ab98..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"court-basketball-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-thin.imageset/Contents.json deleted file mode 100644 index b9f4d8ce6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"court-basketball-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball.imageset/Contents.json deleted file mode 100644 index 328bf3b6f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"court-basketball.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-bold.imageset/Contents.json deleted file mode 100644 index 737b0773e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cow-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-duotone.imageset/Contents.json deleted file mode 100644 index 7a2c0f1ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cow-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-fill.imageset/Contents.json deleted file mode 100644 index 0102e1a67..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cow-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-light.imageset/Contents.json deleted file mode 100644 index 7eab0254a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cow-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-thin.imageset/Contents.json deleted file mode 100644 index 6b1825df4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cow-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow.imageset/Contents.json deleted file mode 100644 index 3ab048529..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cow.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-bold.imageset/Contents.json deleted file mode 100644 index 510a4318a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cowboy-hat-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-duotone.imageset/Contents.json deleted file mode 100644 index 6ed11dc5e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cowboy-hat-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-fill.imageset/Contents.json deleted file mode 100644 index 53118677b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cowboy-hat-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-light.imageset/Contents.json deleted file mode 100644 index 781549d3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cowboy-hat-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-thin.imageset/Contents.json deleted file mode 100644 index e5ca998af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cowboy-hat-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat.imageset/Contents.json deleted file mode 100644 index 476d6d232..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cowboy-hat.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-bold.imageset/Contents.json deleted file mode 100644 index 5114fe1e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cpu-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-duotone.imageset/Contents.json deleted file mode 100644 index 541217fe7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cpu-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-fill.imageset/Contents.json deleted file mode 100644 index 30186becc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cpu-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-light.imageset/Contents.json deleted file mode 100644 index 01b6bbd25..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cpu-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-thin.imageset/Contents.json deleted file mode 100644 index 491359032..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cpu-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu.imageset/Contents.json deleted file mode 100644 index 276cd2345..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cpu.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-bold.imageset/Contents.json deleted file mode 100644 index a3034129a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"crane-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-duotone.imageset/Contents.json deleted file mode 100644 index 955404697..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"crane-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-fill.imageset/Contents.json deleted file mode 100644 index 41a30715f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"crane-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-light.imageset/Contents.json deleted file mode 100644 index 6ec28ed26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"crane-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-thin.imageset/Contents.json deleted file mode 100644 index 964c90d7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"crane-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-bold.imageset/Contents.json deleted file mode 100644 index e504fa8a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"crane-tower-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-duotone.imageset/Contents.json deleted file mode 100644 index 72df95e04..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"crane-tower-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-fill.imageset/Contents.json deleted file mode 100644 index c09800e7e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"crane-tower-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-light.imageset/Contents.json deleted file mode 100644 index 2f05021e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"crane-tower-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-thin.imageset/Contents.json deleted file mode 100644 index 4cc44c03b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"crane-tower-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower.imageset/Contents.json deleted file mode 100644 index 330911fb5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"crane-tower.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane.imageset/Contents.json deleted file mode 100644 index b6cb61041..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"crane.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-bold.imageset/Contents.json deleted file mode 100644 index 516787c04..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"credit-card-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-duotone.imageset/Contents.json deleted file mode 100644 index bab5f9050..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"credit-card-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-fill.imageset/Contents.json deleted file mode 100644 index ae2c26456..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"credit-card-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-light.imageset/Contents.json deleted file mode 100644 index 5a620ccbf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"credit-card-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-thin.imageset/Contents.json deleted file mode 100644 index 1bd9cdd56..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"credit-card-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card.imageset/Contents.json deleted file mode 100644 index b2bed5978..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"credit-card.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-bold.imageset/Contents.json deleted file mode 100644 index 03a008ba8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cricket-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-duotone.imageset/Contents.json deleted file mode 100644 index 6a439af04..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cricket-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-fill.imageset/Contents.json deleted file mode 100644 index c58e19614..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cricket-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-light.imageset/Contents.json deleted file mode 100644 index 608489d48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cricket-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-thin.imageset/Contents.json deleted file mode 100644 index fd18f737b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cricket-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket.imageset/Contents.json deleted file mode 100644 index 0f2a49c80..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"cricket.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-bold.imageset/Contents.json deleted file mode 100644 index 31f2b5513..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"crop-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-duotone.imageset/Contents.json deleted file mode 100644 index f46a7ee84..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"crop-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-fill.imageset/Contents.json deleted file mode 100644 index 8e140fee9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"crop-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-light.imageset/Contents.json deleted file mode 100644 index e2f3c95c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"crop-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-thin.imageset/Contents.json deleted file mode 100644 index 0ec760088..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"crop-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop.imageset/Contents.json deleted file mode 100644 index 307a410d6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"crop.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-bold.imageset/Contents.json deleted file mode 100644 index 79daadfc7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cross-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-duotone.imageset/Contents.json deleted file mode 100644 index 6b204eb21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cross-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-fill.imageset/Contents.json deleted file mode 100644 index 88d9cc304..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cross-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-light.imageset/Contents.json deleted file mode 100644 index b5709c624..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cross-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-thin.imageset/Contents.json deleted file mode 100644 index 45bc51c90..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cross-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross.imageset/Contents.json deleted file mode 100644 index 8e7dedf21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cross.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-bold.imageset/Contents.json deleted file mode 100644 index 94c7d021e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"crosshair-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-duotone.imageset/Contents.json deleted file mode 100644 index 16fc2a36b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"crosshair-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-fill.imageset/Contents.json deleted file mode 100644 index cc8c9992b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"crosshair-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-light.imageset/Contents.json deleted file mode 100644 index 52dd363b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"crosshair-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-bold.imageset/Contents.json deleted file mode 100644 index ea5aaeefd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"crosshair-simple-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-duotone.imageset/Contents.json deleted file mode 100644 index 6f027f26a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"crosshair-simple-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-fill.imageset/Contents.json deleted file mode 100644 index 801cb3c0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"crosshair-simple-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-light.imageset/Contents.json deleted file mode 100644 index 77c7e85cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"crosshair-simple-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-thin.imageset/Contents.json deleted file mode 100644 index 6c5835191..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"crosshair-simple-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple.imageset/Contents.json deleted file mode 100644 index b6aff72e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"crosshair-simple.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-thin.imageset/Contents.json deleted file mode 100644 index 3eb796bc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"crosshair-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair.imageset/Contents.json deleted file mode 100644 index c08da4fba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"crosshair.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-bold.imageset/Contents.json deleted file mode 100644 index fef1506f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"crown-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-bold.imageset/Contents.json deleted file mode 100644 index 22d5fc3c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"crown-cross-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-duotone.imageset/Contents.json deleted file mode 100644 index f1e22767c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"crown-cross-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-fill.imageset/Contents.json deleted file mode 100644 index 029c54b5f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"crown-cross-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-light.imageset/Contents.json deleted file mode 100644 index 0306f0ec3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"crown-cross-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-thin.imageset/Contents.json deleted file mode 100644 index 6d030dc80..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"crown-cross-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross.imageset/Contents.json deleted file mode 100644 index be1ced633..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"crown-cross.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-duotone.imageset/Contents.json deleted file mode 100644 index 2a5d7a2f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"crown-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-fill.imageset/Contents.json deleted file mode 100644 index af434d288..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"crown-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-light.imageset/Contents.json deleted file mode 100644 index 8406ae6e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"crown-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-bold.imageset/Contents.json deleted file mode 100644 index 19d441ee3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"crown-simple-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-duotone.imageset/Contents.json deleted file mode 100644 index 22799c6de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"crown-simple-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-fill.imageset/Contents.json deleted file mode 100644 index ec64f6403..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"crown-simple-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-light.imageset/Contents.json deleted file mode 100644 index b1159bbee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"crown-simple-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-thin.imageset/Contents.json deleted file mode 100644 index d0d647e7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"crown-simple-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple.imageset/Contents.json deleted file mode 100644 index e2a4020a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"crown-simple.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-thin.imageset/Contents.json deleted file mode 100644 index 41ba1f1c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"crown-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown.imageset/Contents.json deleted file mode 100644 index 7d3bb3901..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"crown.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-bold.imageset/Contents.json deleted file mode 100644 index b2742fa10..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cube-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-duotone.imageset/Contents.json deleted file mode 100644 index bed24214a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cube-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-fill.imageset/Contents.json deleted file mode 100644 index 66b6dbceb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cube-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-bold.imageset/Contents.json deleted file mode 100644 index a17d330c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cube-focus-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-duotone.imageset/Contents.json deleted file mode 100644 index df9ecd3a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cube-focus-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-fill.imageset/Contents.json deleted file mode 100644 index da1948a38..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cube-focus-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-light.imageset/Contents.json deleted file mode 100644 index c98db8d3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cube-focus-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-thin.imageset/Contents.json deleted file mode 100644 index 66cd7eb12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cube-focus-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus.imageset/Contents.json deleted file mode 100644 index 6f81b3d45..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cube-focus.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-light.imageset/Contents.json deleted file mode 100644 index b27a588d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cube-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-thin.imageset/Contents.json deleted file mode 100644 index 155ca19b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cube-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-bold.imageset/Contents.json deleted file mode 100644 index 812c2ca26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cube-transparent-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-duotone.imageset/Contents.json deleted file mode 100644 index b378cfc2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cube-transparent-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-fill.imageset/Contents.json deleted file mode 100644 index 46b9df653..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cube-transparent-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-light.imageset/Contents.json deleted file mode 100644 index 05d7f44bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cube-transparent-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-thin.imageset/Contents.json deleted file mode 100644 index b53cc0392..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cube-transparent-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent.imageset/Contents.json deleted file mode 100644 index c1433ea5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cube-transparent.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube.imageset/Contents.json deleted file mode 100644 index 40b04bd7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cube.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-bold.imageset/Contents.json deleted file mode 100644 index 4597f7687..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"currency-btc-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-duotone.imageset/Contents.json deleted file mode 100644 index f738f1100..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"currency-btc-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-fill.imageset/Contents.json deleted file mode 100644 index 2c44c7b89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"currency-btc-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-light.imageset/Contents.json deleted file mode 100644 index c2099ca34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"currency-btc-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-thin.imageset/Contents.json deleted file mode 100644 index 98e61e407..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"currency-btc-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc.imageset/Contents.json deleted file mode 100644 index 0fa0b2b91..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-btc.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-bold.imageset/Contents.json deleted file mode 100644 index f3fc4f8f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"currency-circle-dollar-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-duotone.imageset/Contents.json deleted file mode 100644 index d67ddcdca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"currency-circle-dollar-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-fill.imageset/Contents.json deleted file mode 100644 index a667e0d45..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"currency-circle-dollar-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-light.imageset/Contents.json deleted file mode 100644 index 7a471a3ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"currency-circle-dollar-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-thin.imageset/Contents.json deleted file mode 100644 index 52d50075c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"currency-circle-dollar-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar.imageset/Contents.json deleted file mode 100644 index 4b7e394ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"currency-circle-dollar.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-bold.imageset/Contents.json deleted file mode 100644 index 2751aec3b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-cny-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-duotone.imageset/Contents.json deleted file mode 100644 index 3fc5b427d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"currency-cny-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-fill.imageset/Contents.json deleted file mode 100644 index af6c87484..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"currency-cny-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-light.imageset/Contents.json deleted file mode 100644 index 53ef522e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"currency-cny-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-thin.imageset/Contents.json deleted file mode 100644 index 4154b98e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"currency-cny-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny.imageset/Contents.json deleted file mode 100644 index 33d888dae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"currency-cny.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-bold.imageset/Contents.json deleted file mode 100644 index 677b5c1ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"currency-dollar-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-duotone.imageset/Contents.json deleted file mode 100644 index 8badc1faf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"currency-dollar-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-fill.imageset/Contents.json deleted file mode 100644 index 0e9aedabc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"currency-dollar-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-light.imageset/Contents.json deleted file mode 100644 index 3a7a4728a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"currency-dollar-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-bold.imageset/Contents.json deleted file mode 100644 index fbdb83f9d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"currency-dollar-simple-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-duotone.imageset/Contents.json deleted file mode 100644 index 477a052ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"currency-dollar-simple-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-fill.imageset/Contents.json deleted file mode 100644 index 5e2a63c67..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-dollar-simple-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-light.imageset/Contents.json deleted file mode 100644 index 6c79c26c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"currency-dollar-simple-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-thin.imageset/Contents.json deleted file mode 100644 index 2eb3fc543..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"currency-dollar-simple-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple.imageset/Contents.json deleted file mode 100644 index ffad40438..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"currency-dollar-simple.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-thin.imageset/Contents.json deleted file mode 100644 index 0663337bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"currency-dollar-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar.imageset/Contents.json deleted file mode 100644 index 9411e7511..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-dollar.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-bold.imageset/Contents.json deleted file mode 100644 index 4320db1a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"currency-eth-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-duotone.imageset/Contents.json deleted file mode 100644 index 310b1ad23..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"currency-eth-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-fill.imageset/Contents.json deleted file mode 100644 index 0128c01ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-eth-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-light.imageset/Contents.json deleted file mode 100644 index 6d59b1bec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"currency-eth-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-thin.imageset/Contents.json deleted file mode 100644 index 0dcbfc1c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"currency-eth-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth.imageset/Contents.json deleted file mode 100644 index bf82eabf0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-eth.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-bold.imageset/Contents.json deleted file mode 100644 index 89c139d47..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-eur-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-duotone.imageset/Contents.json deleted file mode 100644 index 3b1c3cf5c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"currency-eur-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-fill.imageset/Contents.json deleted file mode 100644 index 149100220..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"currency-eur-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-light.imageset/Contents.json deleted file mode 100644 index 2693ab02c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"currency-eur-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-thin.imageset/Contents.json deleted file mode 100644 index a6a6d709b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-eur-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur.imageset/Contents.json deleted file mode 100644 index 5ad90cab3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-eur.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-bold.imageset/Contents.json deleted file mode 100644 index 70af0aebb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"currency-gbp-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-duotone.imageset/Contents.json deleted file mode 100644 index 46f0c6de4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"currency-gbp-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-fill.imageset/Contents.json deleted file mode 100644 index 6a42cee5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"currency-gbp-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-light.imageset/Contents.json deleted file mode 100644 index 551a8ba7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"currency-gbp-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-thin.imageset/Contents.json deleted file mode 100644 index e33894dbe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"currency-gbp-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp.imageset/Contents.json deleted file mode 100644 index 180f15731..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"currency-gbp.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-bold.imageset/Contents.json deleted file mode 100644 index 741a23d14..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-inr-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-duotone.imageset/Contents.json deleted file mode 100644 index 6b3376739..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"currency-inr-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-fill.imageset/Contents.json deleted file mode 100644 index 95323f2aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"currency-inr-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-light.imageset/Contents.json deleted file mode 100644 index 70dc0093d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"currency-inr-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-thin.imageset/Contents.json deleted file mode 100644 index e4dbb5c28..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-inr-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr.imageset/Contents.json deleted file mode 100644 index aaa6211fd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"currency-inr.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-bold.imageset/Contents.json deleted file mode 100644 index cbbe041e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"currency-jpy-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-duotone.imageset/Contents.json deleted file mode 100644 index 1f4db12d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"currency-jpy-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-fill.imageset/Contents.json deleted file mode 100644 index c930a8336..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-jpy-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-light.imageset/Contents.json deleted file mode 100644 index 606b976f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"currency-jpy-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-thin.imageset/Contents.json deleted file mode 100644 index c3542e292..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"currency-jpy-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy.imageset/Contents.json deleted file mode 100644 index d2e10f6bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"currency-jpy.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-bold.imageset/Contents.json deleted file mode 100644 index 42767a762..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-krw-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-duotone.imageset/Contents.json deleted file mode 100644 index 968f300ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"currency-krw-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-fill.imageset/Contents.json deleted file mode 100644 index 18dd23804..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-krw-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-light.imageset/Contents.json deleted file mode 100644 index 1232f103a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"currency-krw-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-thin.imageset/Contents.json deleted file mode 100644 index 79b25a59d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"currency-krw-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw.imageset/Contents.json deleted file mode 100644 index 1f4d190c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-krw.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-bold.imageset/Contents.json deleted file mode 100644 index 986762263..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"currency-kzt-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-duotone.imageset/Contents.json deleted file mode 100644 index 4dae6f17a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"currency-kzt-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-fill.imageset/Contents.json deleted file mode 100644 index 44f345bbe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"currency-kzt-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-light.imageset/Contents.json deleted file mode 100644 index f3207e4d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-kzt-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-thin.imageset/Contents.json deleted file mode 100644 index a1b9008da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"currency-kzt-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt.imageset/Contents.json deleted file mode 100644 index 0f0e72977..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"currency-kzt.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-bold.imageset/Contents.json deleted file mode 100644 index 41f090957..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"currency-ngn-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-duotone.imageset/Contents.json deleted file mode 100644 index f3eb33874..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"currency-ngn-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-fill.imageset/Contents.json deleted file mode 100644 index d730eb698..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"currency-ngn-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-light.imageset/Contents.json deleted file mode 100644 index 0150393af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"currency-ngn-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-thin.imageset/Contents.json deleted file mode 100644 index d4e5da7e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"currency-ngn-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn.imageset/Contents.json deleted file mode 100644 index dc316ca6a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"currency-ngn.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-bold.imageset/Contents.json deleted file mode 100644 index 29ee8d94c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"currency-rub-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-duotone.imageset/Contents.json deleted file mode 100644 index bcc00c80a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"currency-rub-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-fill.imageset/Contents.json deleted file mode 100644 index 7aa04b9b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"currency-rub-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-light.imageset/Contents.json deleted file mode 100644 index 3238c668d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"currency-rub-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-thin.imageset/Contents.json deleted file mode 100644 index 71aef6f58..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"currency-rub-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub.imageset/Contents.json deleted file mode 100644 index e60c80205..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"currency-rub.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-bold.imageset/Contents.json deleted file mode 100644 index c7e941b48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"cursor-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-bold.imageset/Contents.json deleted file mode 100644 index 91f79b961..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cursor-click-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-duotone.imageset/Contents.json deleted file mode 100644 index 90fae6e58..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cursor-click-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-fill.imageset/Contents.json deleted file mode 100644 index 477222c02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cursor-click-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-light.imageset/Contents.json deleted file mode 100644 index 9d0ac044e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cursor-click-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-thin.imageset/Contents.json deleted file mode 100644 index 5de079c70..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cursor-click-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click.imageset/Contents.json deleted file mode 100644 index 25aaa506a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cursor-click.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-duotone.imageset/Contents.json deleted file mode 100644 index 8e16504a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cursor-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-fill.imageset/Contents.json deleted file mode 100644 index 62eb81591..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cursor-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-light.imageset/Contents.json deleted file mode 100644 index 62d7105f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cursor-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-bold.imageset/Contents.json deleted file mode 100644 index 460f25fb4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"cursor-text-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-duotone.imageset/Contents.json deleted file mode 100644 index c861974b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cursor-text-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-fill.imageset/Contents.json deleted file mode 100644 index 8f3db991b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cursor-text-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-light.imageset/Contents.json deleted file mode 100644 index 3d4d6d1fa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"cursor-text-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-thin.imageset/Contents.json deleted file mode 100644 index 3c3aedfc6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cursor-text-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text.imageset/Contents.json deleted file mode 100644 index ce9fdfb5c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cursor-text.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-thin.imageset/Contents.json deleted file mode 100644 index fd3f1c415..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cursor-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor.imageset/Contents.json deleted file mode 100644 index dd7e9f587..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cursor.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-bold.imageset/Contents.json deleted file mode 100644 index 998101ff6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"cylinder-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-duotone.imageset/Contents.json deleted file mode 100644 index 094239d96..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cylinder-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-fill.imageset/Contents.json deleted file mode 100644 index 04fed5a89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"cylinder-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-light.imageset/Contents.json deleted file mode 100644 index 5fcc09ea0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"cylinder-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-thin.imageset/Contents.json deleted file mode 100644 index e97a27264..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"cylinder-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder.imageset/Contents.json deleted file mode 100644 index 51f22766a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"cylinder.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-bold.imageset/Contents.json deleted file mode 100644 index 0ea4d6a27..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"database-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-duotone.imageset/Contents.json deleted file mode 100644 index 644f2be36..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"database-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-fill.imageset/Contents.json deleted file mode 100644 index a2c05984c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"database-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-light.imageset/Contents.json deleted file mode 100644 index e549cc3e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"database-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-thin.imageset/Contents.json deleted file mode 100644 index 50d72fe8a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"database-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database.imageset/Contents.json deleted file mode 100644 index 41a2ced2a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"database.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-bold.imageset/Contents.json deleted file mode 100644 index 3535f5799..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"desk-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-duotone.imageset/Contents.json deleted file mode 100644 index 3e74e4b7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"desk-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-fill.imageset/Contents.json deleted file mode 100644 index 77a20b675..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"desk-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-light.imageset/Contents.json deleted file mode 100644 index 23e51b2b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"desk-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-thin.imageset/Contents.json deleted file mode 100644 index abe4d1350..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"desk-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk.imageset/Contents.json deleted file mode 100644 index d65609ea4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"desk.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-bold.imageset/Contents.json deleted file mode 100644 index a08f05c1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"desktop-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-duotone.imageset/Contents.json deleted file mode 100644 index 0de6561dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"desktop-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-fill.imageset/Contents.json deleted file mode 100644 index fe0f90645..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"desktop-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-light.imageset/Contents.json deleted file mode 100644 index 613da46f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"desktop-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-thin.imageset/Contents.json deleted file mode 100644 index f013a75e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"desktop-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-bold.imageset/Contents.json deleted file mode 100644 index 43ab50068..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"desktop-tower-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-duotone.imageset/Contents.json deleted file mode 100644 index 7ef5686c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"desktop-tower-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-fill.imageset/Contents.json deleted file mode 100644 index 9534b2e51..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"desktop-tower-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-light.imageset/Contents.json deleted file mode 100644 index 86ad470ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"desktop-tower-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-thin.imageset/Contents.json deleted file mode 100644 index b8f5338c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"desktop-tower-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower.imageset/Contents.json deleted file mode 100644 index 9084caa14..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"desktop-tower.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop.imageset/Contents.json deleted file mode 100644 index 096fe3510..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"desktop.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-bold.imageset/Contents.json deleted file mode 100644 index 6ea52f277..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"detective-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-duotone.imageset/Contents.json deleted file mode 100644 index b20b443a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"detective-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-fill.imageset/Contents.json deleted file mode 100644 index ac6b65a04..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"detective-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-light.imageset/Contents.json deleted file mode 100644 index 85c83c203..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"detective-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-thin.imageset/Contents.json deleted file mode 100644 index 6229e439f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"detective-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective.imageset/Contents.json deleted file mode 100644 index 482cc0439..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"detective.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-bold.imageset/Contents.json deleted file mode 100644 index 60985241e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"dev-to-logo-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-duotone.imageset/Contents.json deleted file mode 100644 index ad1d355c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dev-to-logo-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-fill.imageset/Contents.json deleted file mode 100644 index b4cb78a63..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dev-to-logo-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-light.imageset/Contents.json deleted file mode 100644 index 8c1efd1d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dev-to-logo-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-thin.imageset/Contents.json deleted file mode 100644 index a4e5e1634..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dev-to-logo-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo.imageset/Contents.json deleted file mode 100644 index bfdcb2779..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"dev-to-logo.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-bold.imageset/Contents.json deleted file mode 100644 index ed05aaebd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"device-mobile-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-bold.imageset/Contents.json deleted file mode 100644 index 3949e0578..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"device-mobile-camera-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-duotone.imageset/Contents.json deleted file mode 100644 index 8fa7599ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"device-mobile-camera-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-fill.imageset/Contents.json deleted file mode 100644 index 369d8e2ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"device-mobile-camera-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-light.imageset/Contents.json deleted file mode 100644 index 5d2ccfa80..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"device-mobile-camera-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-thin.imageset/Contents.json deleted file mode 100644 index f2cfd86b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"device-mobile-camera-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera.imageset/Contents.json deleted file mode 100644 index ab6dd6ab8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"device-mobile-camera.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-duotone.imageset/Contents.json deleted file mode 100644 index ac1a070b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"device-mobile-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-fill.imageset/Contents.json deleted file mode 100644 index 0e9b03e33..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"device-mobile-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-light.imageset/Contents.json deleted file mode 100644 index 229d19833..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"device-mobile-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-bold.imageset/Contents.json deleted file mode 100644 index 0655c97d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"device-mobile-slash-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-duotone.imageset/Contents.json deleted file mode 100644 index a69233213..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"device-mobile-slash-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-fill.imageset/Contents.json deleted file mode 100644 index b4cf35feb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"device-mobile-slash-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-light.imageset/Contents.json deleted file mode 100644 index bdd0485f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"device-mobile-slash-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-thin.imageset/Contents.json deleted file mode 100644 index cc02be7e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"device-mobile-slash-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash.imageset/Contents.json deleted file mode 100644 index 89e9125b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"device-mobile-slash.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-bold.imageset/Contents.json deleted file mode 100644 index 873b652e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"device-mobile-speaker-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-duotone.imageset/Contents.json deleted file mode 100644 index 0aa31b120..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"device-mobile-speaker-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-fill.imageset/Contents.json deleted file mode 100644 index 423022784..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"device-mobile-speaker-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-light.imageset/Contents.json deleted file mode 100644 index b177b90f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"device-mobile-speaker-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-thin.imageset/Contents.json deleted file mode 100644 index fe89e01ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"device-mobile-speaker-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker.imageset/Contents.json deleted file mode 100644 index 61a23ace9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"device-mobile-speaker.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-thin.imageset/Contents.json deleted file mode 100644 index f71311713..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"device-mobile-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile.imageset/Contents.json deleted file mode 100644 index 076e83f09..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"device-mobile.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-bold.imageset/Contents.json deleted file mode 100644 index d535efe45..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"device-rotate-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-duotone.imageset/Contents.json deleted file mode 100644 index 37ed6243b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"device-rotate-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-fill.imageset/Contents.json deleted file mode 100644 index 83338e5f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"device-rotate-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-light.imageset/Contents.json deleted file mode 100644 index 2c02740a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"device-rotate-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-thin.imageset/Contents.json deleted file mode 100644 index 0f509c095..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"device-rotate-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate.imageset/Contents.json deleted file mode 100644 index 3f4d4341b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"device-rotate.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-bold.imageset/Contents.json deleted file mode 100644 index c9162015e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"device-tablet-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-bold.imageset/Contents.json deleted file mode 100644 index eaf56b8c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"device-tablet-camera-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-duotone.imageset/Contents.json deleted file mode 100644 index 1738e82a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"device-tablet-camera-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-fill.imageset/Contents.json deleted file mode 100644 index cfaa3349c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"device-tablet-camera-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-light.imageset/Contents.json deleted file mode 100644 index 3954ec083..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"device-tablet-camera-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-thin.imageset/Contents.json deleted file mode 100644 index 05694fb6c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"device-tablet-camera-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera.imageset/Contents.json deleted file mode 100644 index b818242b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"device-tablet-camera.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-duotone.imageset/Contents.json deleted file mode 100644 index f4174ccef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"device-tablet-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-fill.imageset/Contents.json deleted file mode 100644 index bf2e30194..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"device-tablet-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-light.imageset/Contents.json deleted file mode 100644 index f231a5fec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"device-tablet-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-bold.imageset/Contents.json deleted file mode 100644 index b12f4ea40..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"device-tablet-speaker-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-duotone.imageset/Contents.json deleted file mode 100644 index ca786f853..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"device-tablet-speaker-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-fill.imageset/Contents.json deleted file mode 100644 index dcad34a24..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"device-tablet-speaker-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-light.imageset/Contents.json deleted file mode 100644 index 99df5dcf7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"device-tablet-speaker-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-thin.imageset/Contents.json deleted file mode 100644 index 7eb330fe0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"device-tablet-speaker-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker.imageset/Contents.json deleted file mode 100644 index b97a6387c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"device-tablet-speaker.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-thin.imageset/Contents.json deleted file mode 100644 index 57b43d2ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"device-tablet-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet.imageset/Contents.json deleted file mode 100644 index bd1be0bd8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"device-tablet.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-bold.imageset/Contents.json deleted file mode 100644 index 4b5df8db6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"devices-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-duotone.imageset/Contents.json deleted file mode 100644 index d6154b7d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"devices-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-fill.imageset/Contents.json deleted file mode 100644 index c1c7bd565..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"devices-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-light.imageset/Contents.json deleted file mode 100644 index a4b7f87ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"devices-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-thin.imageset/Contents.json deleted file mode 100644 index d181f45ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"devices-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices.imageset/Contents.json deleted file mode 100644 index 7b8ccc154..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"devices.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-bold.imageset/Contents.json deleted file mode 100644 index 596bcea31..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"diamond-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-duotone.imageset/Contents.json deleted file mode 100644 index adf5330a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"diamond-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-fill.imageset/Contents.json deleted file mode 100644 index e6c387458..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"diamond-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-light.imageset/Contents.json deleted file mode 100644 index 2c00bd7b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"diamond-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-thin.imageset/Contents.json deleted file mode 100644 index 0e35e0d6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"diamond-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond.imageset/Contents.json deleted file mode 100644 index fd04374a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"diamond.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-bold.imageset/Contents.json deleted file mode 100644 index 9e021d3d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"diamonds-four-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-duotone.imageset/Contents.json deleted file mode 100644 index cf6b45c6f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"diamonds-four-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-fill.imageset/Contents.json deleted file mode 100644 index d64e5ab71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"diamonds-four-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-light.imageset/Contents.json deleted file mode 100644 index 1d84fd469..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"diamonds-four-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-thin.imageset/Contents.json deleted file mode 100644 index 71f781d2b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"diamonds-four-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four.imageset/Contents.json deleted file mode 100644 index d608b5fd1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"diamonds-four.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-bold.imageset/Contents.json deleted file mode 100644 index 55d54f921..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dice-five-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-duotone.imageset/Contents.json deleted file mode 100644 index af115fcf5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dice-five-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-fill.imageset/Contents.json deleted file mode 100644 index 50ce9f1c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dice-five-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-light.imageset/Contents.json deleted file mode 100644 index 9f566e14a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dice-five-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-thin.imageset/Contents.json deleted file mode 100644 index bc7f48a08..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dice-five-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five.imageset/Contents.json deleted file mode 100644 index 60a6c8c32..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dice-five.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-bold.imageset/Contents.json deleted file mode 100644 index 4e0e5be5a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dice-four-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-duotone.imageset/Contents.json deleted file mode 100644 index c97dbbfb2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dice-four-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-fill.imageset/Contents.json deleted file mode 100644 index 169e3acfb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"dice-four-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-light.imageset/Contents.json deleted file mode 100644 index 40c3d306d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dice-four-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-thin.imageset/Contents.json deleted file mode 100644 index fbb51ee7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dice-four-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four.imageset/Contents.json deleted file mode 100644 index 1ce08f416..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dice-four.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-bold.imageset/Contents.json deleted file mode 100644 index fd231923d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dice-one-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-duotone.imageset/Contents.json deleted file mode 100644 index eb0de8b3a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dice-one-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-fill.imageset/Contents.json deleted file mode 100644 index 9edff1c27..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dice-one-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-light.imageset/Contents.json deleted file mode 100644 index 242260c7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dice-one-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-thin.imageset/Contents.json deleted file mode 100644 index d30d691e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dice-one-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one.imageset/Contents.json deleted file mode 100644 index 7ab153910..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"dice-one.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-bold.imageset/Contents.json deleted file mode 100644 index 5412547f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dice-six-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-duotone.imageset/Contents.json deleted file mode 100644 index ecf180e54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dice-six-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-fill.imageset/Contents.json deleted file mode 100644 index 69c6d605a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dice-six-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-light.imageset/Contents.json deleted file mode 100644 index 1670c21f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dice-six-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-thin.imageset/Contents.json deleted file mode 100644 index e79106af6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"dice-six-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six.imageset/Contents.json deleted file mode 100644 index 2cdef9697..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dice-six.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-bold.imageset/Contents.json deleted file mode 100644 index 0970b1ad2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dice-three-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-duotone.imageset/Contents.json deleted file mode 100644 index 7214af32f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"dice-three-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-fill.imageset/Contents.json deleted file mode 100644 index 4e2ff5822..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dice-three-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-light.imageset/Contents.json deleted file mode 100644 index 98afd8e86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dice-three-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-thin.imageset/Contents.json deleted file mode 100644 index 1a120b1e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"dice-three-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three.imageset/Contents.json deleted file mode 100644 index de7cfa372..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dice-three.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-bold.imageset/Contents.json deleted file mode 100644 index b1c06e5f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dice-two-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-duotone.imageset/Contents.json deleted file mode 100644 index d361a2e76..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dice-two-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-fill.imageset/Contents.json deleted file mode 100644 index 622c51d22..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dice-two-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-light.imageset/Contents.json deleted file mode 100644 index 890cd9a61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"dice-two-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-thin.imageset/Contents.json deleted file mode 100644 index f86490c42..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dice-two-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two.imageset/Contents.json deleted file mode 100644 index 85bbcaac2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dice-two.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-bold.imageset/Contents.json deleted file mode 100644 index 2ce234692..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"disc-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-duotone.imageset/Contents.json deleted file mode 100644 index 0fe57b946..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"disc-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-fill.imageset/Contents.json deleted file mode 100644 index 7d49c5cbc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"disc-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-light.imageset/Contents.json deleted file mode 100644 index 43493d1a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"disc-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-thin.imageset/Contents.json deleted file mode 100644 index d8a018bef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"disc-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc.imageset/Contents.json deleted file mode 100644 index 7fc9b2a23..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"disc.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-bold.imageset/Contents.json deleted file mode 100644 index 4654e5956..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"disco-ball-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-duotone.imageset/Contents.json deleted file mode 100644 index 9e0a9c55f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"disco-ball-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-fill.imageset/Contents.json deleted file mode 100644 index 785e18b0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"disco-ball-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-light.imageset/Contents.json deleted file mode 100644 index 7a5d73489..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"disco-ball-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-thin.imageset/Contents.json deleted file mode 100644 index 60acd31d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"disco-ball-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball.imageset/Contents.json deleted file mode 100644 index 991e1f293..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"disco-ball.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-bold.imageset/Contents.json deleted file mode 100644 index caaeb0119..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"discord-logo-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-duotone.imageset/Contents.json deleted file mode 100644 index e4627d107..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"discord-logo-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-fill.imageset/Contents.json deleted file mode 100644 index 85860dae2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"discord-logo-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-light.imageset/Contents.json deleted file mode 100644 index 6af60788f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"discord-logo-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-thin.imageset/Contents.json deleted file mode 100644 index c0b6d6fcf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"discord-logo-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo.imageset/Contents.json deleted file mode 100644 index 95901cd26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"discord-logo.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-bold.imageset/Contents.json deleted file mode 100644 index 94abea4aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"divide-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-duotone.imageset/Contents.json deleted file mode 100644 index 0eddfb21b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"divide-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-fill.imageset/Contents.json deleted file mode 100644 index 284657dbe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"divide-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-light.imageset/Contents.json deleted file mode 100644 index 27d375bc8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"divide-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-thin.imageset/Contents.json deleted file mode 100644 index b8d47fdc8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"divide-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide.imageset/Contents.json deleted file mode 100644 index 70527c3b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"divide.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-bold.imageset/Contents.json deleted file mode 100644 index 110993aeb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"dna-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-duotone.imageset/Contents.json deleted file mode 100644 index a6fde5d9a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"dna-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-fill.imageset/Contents.json deleted file mode 100644 index 5601537c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"dna-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-light.imageset/Contents.json deleted file mode 100644 index 9f34d44bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dna-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-thin.imageset/Contents.json deleted file mode 100644 index 3eed0729f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"dna-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna.imageset/Contents.json deleted file mode 100644 index eb4fef882..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dna.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-bold.imageset/Contents.json deleted file mode 100644 index aaa744792..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"dog-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-duotone.imageset/Contents.json deleted file mode 100644 index 7aff374d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dog-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-fill.imageset/Contents.json deleted file mode 100644 index 54a2580c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dog-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-light.imageset/Contents.json deleted file mode 100644 index 700c9cb25..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"dog-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-thin.imageset/Contents.json deleted file mode 100644 index 40470a90d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dog-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog.imageset/Contents.json deleted file mode 100644 index fb58b81a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dog.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-bold.imageset/Contents.json deleted file mode 100644 index 09a9fc8a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"door-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-duotone.imageset/Contents.json deleted file mode 100644 index 8a09d5444..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"door-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-fill.imageset/Contents.json deleted file mode 100644 index 05b9bff54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"door-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-light.imageset/Contents.json deleted file mode 100644 index 008d348f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"door-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-bold.imageset/Contents.json deleted file mode 100644 index 10031c27f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"door-open-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-duotone.imageset/Contents.json deleted file mode 100644 index 6361fa431..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"door-open-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-fill.imageset/Contents.json deleted file mode 100644 index 1aae3203d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"door-open-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-light.imageset/Contents.json deleted file mode 100644 index e4fd7b41f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"door-open-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-thin.imageset/Contents.json deleted file mode 100644 index 90eeaf8db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"door-open-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open.imageset/Contents.json deleted file mode 100644 index bf902ea0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"door-open.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-thin.imageset/Contents.json deleted file mode 100644 index 14edb3881..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"door-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door.imageset/Contents.json deleted file mode 100644 index c49d7291c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"door.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-bold.imageset/Contents.json deleted file mode 100644 index 33784bfd3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dot-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-duotone.imageset/Contents.json deleted file mode 100644 index 7b2c2c1f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dot-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-fill.imageset/Contents.json deleted file mode 100644 index 32e544514..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dot-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-light.imageset/Contents.json deleted file mode 100644 index 2150c68df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"dot-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-bold.imageset/Contents.json deleted file mode 100644 index 5053c983c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dot-outline-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-duotone.imageset/Contents.json deleted file mode 100644 index d5a5f3aca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"dot-outline-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-fill.imageset/Contents.json deleted file mode 100644 index 4f35aabab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dot-outline-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-light.imageset/Contents.json deleted file mode 100644 index ba8b3f037..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"dot-outline-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-thin.imageset/Contents.json deleted file mode 100644 index 8060fd5c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"dot-outline-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline.imageset/Contents.json deleted file mode 100644 index 3a3b4934d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"dot-outline.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-thin.imageset/Contents.json deleted file mode 100644 index de391d764..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dot-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot.imageset/Contents.json deleted file mode 100644 index 31fc76358..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dot.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-bold.imageset/Contents.json deleted file mode 100644 index 111ea74f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dots-nine-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-duotone.imageset/Contents.json deleted file mode 100644 index ef13bacc1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dots-nine-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-fill.imageset/Contents.json deleted file mode 100644 index ab76718fe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dots-nine-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-light.imageset/Contents.json deleted file mode 100644 index f54874d4b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dots-nine-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-thin.imageset/Contents.json deleted file mode 100644 index c93059ebf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dots-nine-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine.imageset/Contents.json deleted file mode 100644 index e2dd102b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dots-nine.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-bold.imageset/Contents.json deleted file mode 100644 index 79f926ad7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"dots-six-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-duotone.imageset/Contents.json deleted file mode 100644 index 4400b5f3a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dots-six-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-fill.imageset/Contents.json deleted file mode 100644 index f8cf09eec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dots-six-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-light.imageset/Contents.json deleted file mode 100644 index 7254dd2f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dots-six-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-thin.imageset/Contents.json deleted file mode 100644 index 0ab11c014..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dots-six-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-bold.imageset/Contents.json deleted file mode 100644 index 661d76799..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"dots-six-vertical-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-duotone.imageset/Contents.json deleted file mode 100644 index 5919fc357..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dots-six-vertical-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-fill.imageset/Contents.json deleted file mode 100644 index dbe6d66b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dots-six-vertical-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-light.imageset/Contents.json deleted file mode 100644 index c38484138..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"dots-six-vertical-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-thin.imageset/Contents.json deleted file mode 100644 index adf42aeac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dots-six-vertical-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical.imageset/Contents.json deleted file mode 100644 index 0136b9794..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"dots-six-vertical.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six.imageset/Contents.json deleted file mode 100644 index 4cb856ece..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dots-six.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-bold.imageset/Contents.json deleted file mode 100644 index 4fa33f0f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"dots-three-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-bold.imageset/Contents.json deleted file mode 100644 index 2fb94960f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dots-three-circle-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-duotone.imageset/Contents.json deleted file mode 100644 index bb9891105..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"dots-three-circle-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-fill.imageset/Contents.json deleted file mode 100644 index 9590dc731..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"dots-three-circle-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-light.imageset/Contents.json deleted file mode 100644 index 0f343e7a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"dots-three-circle-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-thin.imageset/Contents.json deleted file mode 100644 index 7b86f0bcb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"dots-three-circle-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-bold.imageset/Contents.json deleted file mode 100644 index 4d7aff4e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"dots-three-circle-vertical-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-duotone.imageset/Contents.json deleted file mode 100644 index f24e0a3f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dots-three-circle-vertical-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-fill.imageset/Contents.json deleted file mode 100644 index 853826a7c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dots-three-circle-vertical-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-light.imageset/Contents.json deleted file mode 100644 index e79edf711..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dots-three-circle-vertical-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-thin.imageset/Contents.json deleted file mode 100644 index 75b15c1f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dots-three-circle-vertical-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical.imageset/Contents.json deleted file mode 100644 index 615ea9884..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dots-three-circle-vertical.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle.imageset/Contents.json deleted file mode 100644 index 551ea5d70..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"dots-three-circle.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-duotone.imageset/Contents.json deleted file mode 100644 index d662de0f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dots-three-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-fill.imageset/Contents.json deleted file mode 100644 index 025563830..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dots-three-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-light.imageset/Contents.json deleted file mode 100644 index 690823c29..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"dots-three-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-bold.imageset/Contents.json deleted file mode 100644 index 1bc678e1b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dots-three-outline-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-duotone.imageset/Contents.json deleted file mode 100644 index f3b00109f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"dots-three-outline-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-fill.imageset/Contents.json deleted file mode 100644 index 07cb9eb15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"dots-three-outline-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-light.imageset/Contents.json deleted file mode 100644 index aa3f6c9e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dots-three-outline-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-thin.imageset/Contents.json deleted file mode 100644 index 835ace68f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"dots-three-outline-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-bold.imageset/Contents.json deleted file mode 100644 index c692a0988..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"dots-three-outline-vertical-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-duotone.imageset/Contents.json deleted file mode 100644 index 0d226fef2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dots-three-outline-vertical-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-fill.imageset/Contents.json deleted file mode 100644 index 58d437729..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dots-three-outline-vertical-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-light.imageset/Contents.json deleted file mode 100644 index eb95b2e66..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dots-three-outline-vertical-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-thin.imageset/Contents.json deleted file mode 100644 index 76fccb41f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dots-three-outline-vertical-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical.imageset/Contents.json deleted file mode 100644 index 6d25f2e31..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dots-three-outline-vertical.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline.imageset/Contents.json deleted file mode 100644 index 9611bf096..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dots-three-outline.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-thin.imageset/Contents.json deleted file mode 100644 index 800b4655e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dots-three-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-bold.imageset/Contents.json deleted file mode 100644 index 20698809e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dots-three-vertical-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-duotone.imageset/Contents.json deleted file mode 100644 index 575823507..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"dots-three-vertical-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-fill.imageset/Contents.json deleted file mode 100644 index 6c2b30962..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dots-three-vertical-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-light.imageset/Contents.json deleted file mode 100644 index 3c407046b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"dots-three-vertical-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-thin.imageset/Contents.json deleted file mode 100644 index 2a4496ffb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dots-three-vertical-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical.imageset/Contents.json deleted file mode 100644 index 0230b21d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dots-three-vertical.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three.imageset/Contents.json deleted file mode 100644 index 6b1127b66..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"dots-three.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-bold.imageset/Contents.json deleted file mode 100644 index 992a8cf85..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"download-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-duotone.imageset/Contents.json deleted file mode 100644 index d469ec27b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"download-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-fill.imageset/Contents.json deleted file mode 100644 index d7a2d4c37..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"download-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-light.imageset/Contents.json deleted file mode 100644 index 3e4d85d1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"download-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-bold.imageset/Contents.json deleted file mode 100644 index 3cfe0b096..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"download-simple-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-duotone.imageset/Contents.json deleted file mode 100644 index a8edd78a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"download-simple-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-fill.imageset/Contents.json deleted file mode 100644 index b2ccd82f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"download-simple-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-light.imageset/Contents.json deleted file mode 100644 index 69136a532..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"download-simple-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-thin.imageset/Contents.json deleted file mode 100644 index 52f7186e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"download-simple-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple.imageset/Contents.json deleted file mode 100644 index 9014fc5f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"download-simple.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-thin.imageset/Contents.json deleted file mode 100644 index 742b40e74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"download-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download.imageset/Contents.json deleted file mode 100644 index 8112ff609..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"download.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-bold.imageset/Contents.json deleted file mode 100644 index e7736afa8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"dress-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-duotone.imageset/Contents.json deleted file mode 100644 index f6bdd7c23..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dress-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-fill.imageset/Contents.json deleted file mode 100644 index 4a6bee9fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dress-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-light.imageset/Contents.json deleted file mode 100644 index 173f6c2c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"dress-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-thin.imageset/Contents.json deleted file mode 100644 index 2fda40c1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dress-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress.imageset/Contents.json deleted file mode 100644 index bab0df182..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dress.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-bold.imageset/Contents.json deleted file mode 100644 index c42e411eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dresser-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-duotone.imageset/Contents.json deleted file mode 100644 index 259a96d6e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"dresser-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-fill.imageset/Contents.json deleted file mode 100644 index 6d2b1e7b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dresser-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-light.imageset/Contents.json deleted file mode 100644 index 1836a14a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dresser-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-thin.imageset/Contents.json deleted file mode 100644 index 7245d9cb9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"dresser-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser.imageset/Contents.json deleted file mode 100644 index 0aefd79fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dresser.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-bold.imageset/Contents.json deleted file mode 100644 index 8906ec64b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dribbble-logo-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-duotone.imageset/Contents.json deleted file mode 100644 index d1307f00e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dribbble-logo-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-fill.imageset/Contents.json deleted file mode 100644 index c66c4b305..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dribbble-logo-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-light.imageset/Contents.json deleted file mode 100644 index e0b576ada..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dribbble-logo-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-thin.imageset/Contents.json deleted file mode 100644 index e8abf02f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"dribbble-logo-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo.imageset/Contents.json deleted file mode 100644 index 712d652d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dribbble-logo.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-bold.imageset/Contents.json deleted file mode 100644 index 40fd21235..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"drone-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-duotone.imageset/Contents.json deleted file mode 100644 index 930c9a12c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"drone-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-fill.imageset/Contents.json deleted file mode 100644 index 781f7444b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"drone-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-light.imageset/Contents.json deleted file mode 100644 index 4d1f2545d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"drone-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-thin.imageset/Contents.json deleted file mode 100644 index d513835aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"drone-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone.imageset/Contents.json deleted file mode 100644 index 07c8afe46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"drone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-bold.imageset/Contents.json deleted file mode 100644 index f7a5b19a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"drop-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-duotone.imageset/Contents.json deleted file mode 100644 index 4b73b3b8a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"drop-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-fill.imageset/Contents.json deleted file mode 100644 index 123d4de61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"drop-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bold.imageset/Contents.json deleted file mode 100644 index b31c2cab1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"drop-half-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-bold.imageset/Contents.json deleted file mode 100644 index c7e3a72ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"drop-half-bottom-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-duotone.imageset/Contents.json deleted file mode 100644 index 390ca278e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"drop-half-bottom-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-fill.imageset/Contents.json deleted file mode 100644 index 599ee302d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"drop-half-bottom-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-light.imageset/Contents.json deleted file mode 100644 index 5466fadb7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"drop-half-bottom-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-thin.imageset/Contents.json deleted file mode 100644 index 90886a18a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"drop-half-bottom-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom.imageset/Contents.json deleted file mode 100644 index 556c47818..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"drop-half-bottom.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-duotone.imageset/Contents.json deleted file mode 100644 index 68afa4d0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"drop-half-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-fill.imageset/Contents.json deleted file mode 100644 index 2e1ea35ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"drop-half-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-light.imageset/Contents.json deleted file mode 100644 index 757d3344d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"drop-half-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-thin.imageset/Contents.json deleted file mode 100644 index e65ce0963..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"drop-half-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half.imageset/Contents.json deleted file mode 100644 index e4a4e865e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"drop-half.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-light.imageset/Contents.json deleted file mode 100644 index e60f1c5cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"drop-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-bold.imageset/Contents.json deleted file mode 100644 index ef0bf931d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"drop-simple-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-duotone.imageset/Contents.json deleted file mode 100644 index 492b41b3a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"drop-simple-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-fill.imageset/Contents.json deleted file mode 100644 index 8f47b9eae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"drop-simple-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-light.imageset/Contents.json deleted file mode 100644 index c934f4f58..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"drop-simple-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-thin.imageset/Contents.json deleted file mode 100644 index 88f4b674a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"drop-simple-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple.imageset/Contents.json deleted file mode 100644 index d966cda1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"drop-simple.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-bold.imageset/Contents.json deleted file mode 100644 index 7a95f064a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"drop-slash-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-duotone.imageset/Contents.json deleted file mode 100644 index e1e35fca6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"drop-slash-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-fill.imageset/Contents.json deleted file mode 100644 index a21bc287c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"drop-slash-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-light.imageset/Contents.json deleted file mode 100644 index 23c2f6547..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"drop-slash-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-thin.imageset/Contents.json deleted file mode 100644 index c284123cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"drop-slash-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash.imageset/Contents.json deleted file mode 100644 index c51543888..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"drop-slash.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-thin.imageset/Contents.json deleted file mode 100644 index 4423ac104..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"drop-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop.imageset/Contents.json deleted file mode 100644 index aa8f6b963..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"drop.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-bold.imageset/Contents.json deleted file mode 100644 index af0abd6b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"dropbox-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-duotone.imageset/Contents.json deleted file mode 100644 index 912fceed7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"dropbox-logo-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-fill.imageset/Contents.json deleted file mode 100644 index 6fde3a281..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"dropbox-logo-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-light.imageset/Contents.json deleted file mode 100644 index 5192dede8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"dropbox-logo-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-thin.imageset/Contents.json deleted file mode 100644 index 82c97e28e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"dropbox-logo-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo.imageset/Contents.json deleted file mode 100644 index cd42c107a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"dropbox-logo.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-bold.imageset/Contents.json deleted file mode 100644 index 60f2e3a45..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"ear-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-duotone.imageset/Contents.json deleted file mode 100644 index 2dca263ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ear-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-fill.imageset/Contents.json deleted file mode 100644 index 32edc393a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"ear-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-light.imageset/Contents.json deleted file mode 100644 index 5725bcbdb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ear-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-bold.imageset/Contents.json deleted file mode 100644 index f901f24ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"ear-slash-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-duotone.imageset/Contents.json deleted file mode 100644 index 2f96792df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"ear-slash-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-fill.imageset/Contents.json deleted file mode 100644 index c377610b1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"ear-slash-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-light.imageset/Contents.json deleted file mode 100644 index 23e73cd02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"ear-slash-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-thin.imageset/Contents.json deleted file mode 100644 index d997d209a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ear-slash-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash.imageset/Contents.json deleted file mode 100644 index 5ab2a6aa5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"ear-slash.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-thin.imageset/Contents.json deleted file mode 100644 index 83618fd2f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ear-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear.imageset/Contents.json deleted file mode 100644 index 6dd37b879..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ear.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-bold.imageset/Contents.json deleted file mode 100644 index 6eb0b573b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"egg-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-bold.imageset/Contents.json deleted file mode 100644 index 494df568d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"egg-crack-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-duotone.imageset/Contents.json deleted file mode 100644 index c054f39bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"egg-crack-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-fill.imageset/Contents.json deleted file mode 100644 index e45e0dd7e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"egg-crack-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-light.imageset/Contents.json deleted file mode 100644 index b0faf9019..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"egg-crack-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-thin.imageset/Contents.json deleted file mode 100644 index 8d5b1c6dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"egg-crack-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack.imageset/Contents.json deleted file mode 100644 index 5e5043cc4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"egg-crack.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-duotone.imageset/Contents.json deleted file mode 100644 index c89fe6191..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"egg-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-fill.imageset/Contents.json deleted file mode 100644 index 5b7633979..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"egg-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-light.imageset/Contents.json deleted file mode 100644 index 843822445..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"egg-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-thin.imageset/Contents.json deleted file mode 100644 index 1a249579d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"egg-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg.imageset/Contents.json deleted file mode 100644 index 9542bf8cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"egg.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-bold.imageset/Contents.json deleted file mode 100644 index e1842b07e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"eject-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-duotone.imageset/Contents.json deleted file mode 100644 index 4567c31ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"eject-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-fill.imageset/Contents.json deleted file mode 100644 index 89bb3fa68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"eject-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-light.imageset/Contents.json deleted file mode 100644 index 4e1755fcf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"eject-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-bold.imageset/Contents.json deleted file mode 100644 index 34e2c9e02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"eject-simple-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-duotone.imageset/Contents.json deleted file mode 100644 index e05f22f7a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"eject-simple-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-fill.imageset/Contents.json deleted file mode 100644 index abace2354..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"eject-simple-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-light.imageset/Contents.json deleted file mode 100644 index 06e5e23bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"eject-simple-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-thin.imageset/Contents.json deleted file mode 100644 index 4a0c6cf7c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"eject-simple-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple.imageset/Contents.json deleted file mode 100644 index e7f980960..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eject-simple.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-thin.imageset/Contents.json deleted file mode 100644 index 29e79985a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"eject-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject.imageset/Contents.json deleted file mode 100644 index 69616c568..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eject.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-bold.imageset/Contents.json deleted file mode 100644 index 2cf433e32..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"elevator-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-duotone.imageset/Contents.json deleted file mode 100644 index d8e193ea7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"elevator-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-fill.imageset/Contents.json deleted file mode 100644 index 44d15fce0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"elevator-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-light.imageset/Contents.json deleted file mode 100644 index 389182bad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"elevator-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-thin.imageset/Contents.json deleted file mode 100644 index bbbc3394c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"elevator-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator.imageset/Contents.json deleted file mode 100644 index 8f707e6fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"elevator.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-bold.imageset/Contents.json deleted file mode 100644 index 75965348e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"empty-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-duotone.imageset/Contents.json deleted file mode 100644 index dbe7f1967..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"empty-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-fill.imageset/Contents.json deleted file mode 100644 index fa5df36cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"empty-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-light.imageset/Contents.json deleted file mode 100644 index 066b551a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"empty-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-thin.imageset/Contents.json deleted file mode 100644 index 75c22cce7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"empty-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty.imageset/Contents.json deleted file mode 100644 index 4a7378a85..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"empty.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-bold.imageset/Contents.json deleted file mode 100644 index 92eb4c304..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"engine-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-duotone.imageset/Contents.json deleted file mode 100644 index 605ddab91..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"engine-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-fill.imageset/Contents.json deleted file mode 100644 index c85fe1876..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"engine-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-light.imageset/Contents.json deleted file mode 100644 index a4bcb57d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"engine-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-thin.imageset/Contents.json deleted file mode 100644 index 0d442fbbe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"engine-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine.imageset/Contents.json deleted file mode 100644 index 8e1b9f646..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"engine.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-bold.imageset/Contents.json deleted file mode 100644 index 76c95542b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"envelope-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-duotone.imageset/Contents.json deleted file mode 100644 index e96e46298..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"envelope-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-fill.imageset/Contents.json deleted file mode 100644 index e8d235373..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"envelope-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-light.imageset/Contents.json deleted file mode 100644 index dad35d4a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"envelope-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-bold.imageset/Contents.json deleted file mode 100644 index 5a24a9605..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"envelope-open-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-duotone.imageset/Contents.json deleted file mode 100644 index 1eaade5d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"envelope-open-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-fill.imageset/Contents.json deleted file mode 100644 index 64db4dac7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"envelope-open-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-light.imageset/Contents.json deleted file mode 100644 index 96b4f011f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"envelope-open-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-thin.imageset/Contents.json deleted file mode 100644 index 5bda9149a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"envelope-open-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open.imageset/Contents.json deleted file mode 100644 index a950a8d0f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"envelope-open.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-bold.imageset/Contents.json deleted file mode 100644 index d3bfaad50..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"envelope-simple-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-duotone.imageset/Contents.json deleted file mode 100644 index d215178a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"envelope-simple-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-fill.imageset/Contents.json deleted file mode 100644 index 2fa7e1cf8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"envelope-simple-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-light.imageset/Contents.json deleted file mode 100644 index 373070081..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"envelope-simple-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-bold.imageset/Contents.json deleted file mode 100644 index 89bedb9aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"envelope-simple-open-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-duotone.imageset/Contents.json deleted file mode 100644 index 97c0270fa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"envelope-simple-open-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-fill.imageset/Contents.json deleted file mode 100644 index 1d9a49ae0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"envelope-simple-open-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-light.imageset/Contents.json deleted file mode 100644 index d41ccca69..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"envelope-simple-open-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-thin.imageset/Contents.json deleted file mode 100644 index 13e7cbc0c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"envelope-simple-open-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open.imageset/Contents.json deleted file mode 100644 index 40ad5e292..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"envelope-simple-open.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-thin.imageset/Contents.json deleted file mode 100644 index 7250d46c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"envelope-simple-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple.imageset/Contents.json deleted file mode 100644 index 2f15a2a57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"envelope-simple.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-thin.imageset/Contents.json deleted file mode 100644 index 72550bf62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"envelope-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope.imageset/Contents.json deleted file mode 100644 index 9667567e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"envelope.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-bold.imageset/Contents.json deleted file mode 100644 index 55a70ae21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"equalizer-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-duotone.imageset/Contents.json deleted file mode 100644 index 9e31206a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"equalizer-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-fill.imageset/Contents.json deleted file mode 100644 index 13eb3476c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"equalizer-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-light.imageset/Contents.json deleted file mode 100644 index a10cc9c80..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"equalizer-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-thin.imageset/Contents.json deleted file mode 100644 index f9b7ad4ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"equalizer-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer.imageset/Contents.json deleted file mode 100644 index 89c464ec7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"equalizer.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-bold.imageset/Contents.json deleted file mode 100644 index c361fa7f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"equals-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-duotone.imageset/Contents.json deleted file mode 100644 index 94e7ae5e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"equals-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-fill.imageset/Contents.json deleted file mode 100644 index 4493a7509..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"equals-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-light.imageset/Contents.json deleted file mode 100644 index 8b725c861..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"equals-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-thin.imageset/Contents.json deleted file mode 100644 index 3b1f55831..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"equals-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals.imageset/Contents.json deleted file mode 100644 index 8a36d8062..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"equals.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-bold.imageset/Contents.json deleted file mode 100644 index 655862f53..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"eraser-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-duotone.imageset/Contents.json deleted file mode 100644 index 1f1ae5543..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eraser-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-fill.imageset/Contents.json deleted file mode 100644 index 95162483f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"eraser-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-light.imageset/Contents.json deleted file mode 100644 index 30caa6ebf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"eraser-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-thin.imageset/Contents.json deleted file mode 100644 index e485fc57b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"eraser-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser.imageset/Contents.json deleted file mode 100644 index 39ea62a1a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"eraser.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-bold.imageset/Contents.json deleted file mode 100644 index 0ba8cb2e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"escalator-down-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-duotone.imageset/Contents.json deleted file mode 100644 index d9d8dfa3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"escalator-down-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-fill.imageset/Contents.json deleted file mode 100644 index 78e0e3b3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"escalator-down-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-light.imageset/Contents.json deleted file mode 100644 index 0695c6141..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"escalator-down-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-thin.imageset/Contents.json deleted file mode 100644 index b7d9e7292..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"escalator-down-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down.imageset/Contents.json deleted file mode 100644 index 055578cec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"escalator-down.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-bold.imageset/Contents.json deleted file mode 100644 index 78bbe44e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"escalator-up-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-duotone.imageset/Contents.json deleted file mode 100644 index f49f2ead3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"escalator-up-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-fill.imageset/Contents.json deleted file mode 100644 index 14fb6484f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"escalator-up-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-light.imageset/Contents.json deleted file mode 100644 index 55aa8113d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"escalator-up-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-thin.imageset/Contents.json deleted file mode 100644 index 2edf6fee7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"escalator-up-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up.imageset/Contents.json deleted file mode 100644 index bc23849c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"escalator-up.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-bold.imageset/Contents.json deleted file mode 100644 index 5e86f2100..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"exam-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-duotone.imageset/Contents.json deleted file mode 100644 index d08b2e629..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"exam-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-fill.imageset/Contents.json deleted file mode 100644 index 569e3954c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"exam-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-light.imageset/Contents.json deleted file mode 100644 index 661d6221f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"exam-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-thin.imageset/Contents.json deleted file mode 100644 index db2c31cd0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"exam-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam.imageset/Contents.json deleted file mode 100644 index f4ba31dc7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"exam.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-bold.imageset/Contents.json deleted file mode 100644 index 783466b3e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"exclamation-mark-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-duotone.imageset/Contents.json deleted file mode 100644 index 9e5e9d744..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"exclamation-mark-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-fill.imageset/Contents.json deleted file mode 100644 index 2507b9386..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"exclamation-mark-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-light.imageset/Contents.json deleted file mode 100644 index 508d6c2ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"exclamation-mark-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-thin.imageset/Contents.json deleted file mode 100644 index 3d667f140..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"exclamation-mark-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark.imageset/Contents.json deleted file mode 100644 index 5270def0c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"exclamation-mark.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-bold.imageset/Contents.json deleted file mode 100644 index a21a53fc7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"exclude-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-duotone.imageset/Contents.json deleted file mode 100644 index 021cd3187..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"exclude-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-fill.imageset/Contents.json deleted file mode 100644 index 8c59c8298..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"exclude-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-light.imageset/Contents.json deleted file mode 100644 index aead5af2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"exclude-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-bold.imageset/Contents.json deleted file mode 100644 index f3af2ffaa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"exclude-square-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-duotone.imageset/Contents.json deleted file mode 100644 index 9fcc7b1b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"exclude-square-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-fill.imageset/Contents.json deleted file mode 100644 index 80fa04d46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"exclude-square-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-light.imageset/Contents.json deleted file mode 100644 index c57a0c55b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"exclude-square-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-thin.imageset/Contents.json deleted file mode 100644 index 2ac673358..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"exclude-square-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square.imageset/Contents.json deleted file mode 100644 index f3d73bf1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"exclude-square.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-thin.imageset/Contents.json deleted file mode 100644 index 86637612c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"exclude-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude.imageset/Contents.json deleted file mode 100644 index 666113aa4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"exclude.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-bold.imageset/Contents.json deleted file mode 100644 index 482f1201e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"export-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-duotone.imageset/Contents.json deleted file mode 100644 index dc3ac832c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"export-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-fill.imageset/Contents.json deleted file mode 100644 index c73afe72c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"export-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-light.imageset/Contents.json deleted file mode 100644 index b71b2d926..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"export-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-thin.imageset/Contents.json deleted file mode 100644 index 42b4664c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"export-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export.imageset/Contents.json deleted file mode 100644 index 456a3736e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"export.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-bold.imageset/Contents.json deleted file mode 100644 index 64cdef2c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"eye-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-bold.imageset/Contents.json deleted file mode 100644 index 6ffd56500..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eye-closed-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-duotone.imageset/Contents.json deleted file mode 100644 index 6aa96393d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eye-closed-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-fill.imageset/Contents.json deleted file mode 100644 index 8a4360f3e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"eye-closed-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-light.imageset/Contents.json deleted file mode 100644 index 813412ce0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"eye-closed-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-thin.imageset/Contents.json deleted file mode 100644 index 7bda11f12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eye-closed-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed.imageset/Contents.json deleted file mode 100644 index f7aa62c00..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"eye-closed.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-duotone.imageset/Contents.json deleted file mode 100644 index d3accb1b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"eye-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-fill.imageset/Contents.json deleted file mode 100644 index 5f34d13d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eye-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-light.imageset/Contents.json deleted file mode 100644 index 365a91535..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"eye-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-bold.imageset/Contents.json deleted file mode 100644 index 662685394..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"eye-slash-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-duotone.imageset/Contents.json deleted file mode 100644 index 32ec65c77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"eye-slash-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-fill.imageset/Contents.json deleted file mode 100644 index d4313a655..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eye-slash-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-light.imageset/Contents.json deleted file mode 100644 index 044bc88f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eye-slash-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-thin.imageset/Contents.json deleted file mode 100644 index 1825e783b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"eye-slash-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash.imageset/Contents.json deleted file mode 100644 index 7be660c16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eye-slash.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-thin.imageset/Contents.json deleted file mode 100644 index 227e70b71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"eye-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye.imageset/Contents.json deleted file mode 100644 index 60b4c4dfe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"eye.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-bold.imageset/Contents.json deleted file mode 100644 index f361a910f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"eyedropper-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-duotone.imageset/Contents.json deleted file mode 100644 index c7baf09e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"eyedropper-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-fill.imageset/Contents.json deleted file mode 100644 index 01e3fa164..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"eyedropper-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-light.imageset/Contents.json deleted file mode 100644 index 2751d39c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"eyedropper-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-bold.imageset/Contents.json deleted file mode 100644 index 673fdaf60..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"eyedropper-sample-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-duotone.imageset/Contents.json deleted file mode 100644 index 635d13e72..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eyedropper-sample-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-fill.imageset/Contents.json deleted file mode 100644 index cb263ed00..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"eyedropper-sample-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-light.imageset/Contents.json deleted file mode 100644 index efa105a69..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"eyedropper-sample-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-thin.imageset/Contents.json deleted file mode 100644 index a3ed0623c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"eyedropper-sample-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample.imageset/Contents.json deleted file mode 100644 index 07a9a10df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eyedropper-sample.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-thin.imageset/Contents.json deleted file mode 100644 index 6cb734705..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"eyedropper-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper.imageset/Contents.json deleted file mode 100644 index 9695f22c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eyedropper.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-bold.imageset/Contents.json deleted file mode 100644 index dc8cc2e8a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"eyeglasses-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-duotone.imageset/Contents.json deleted file mode 100644 index 351e0a248..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"eyeglasses-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-fill.imageset/Contents.json deleted file mode 100644 index 4569a6751..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eyeglasses-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-light.imageset/Contents.json deleted file mode 100644 index 719db2db1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"eyeglasses-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-thin.imageset/Contents.json deleted file mode 100644 index 4f2719e7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"eyeglasses-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses.imageset/Contents.json deleted file mode 100644 index e57661d2b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"eyeglasses.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-bold.imageset/Contents.json deleted file mode 100644 index 4df81275f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"eyes-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-duotone.imageset/Contents.json deleted file mode 100644 index 63dfcb239..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eyes-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-fill.imageset/Contents.json deleted file mode 100644 index f2626bef2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eyes-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-light.imageset/Contents.json deleted file mode 100644 index ce1e60010..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"eyes-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-thin.imageset/Contents.json deleted file mode 100644 index 47b2284b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"eyes-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes.imageset/Contents.json deleted file mode 100644 index 770d73b62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"eyes.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-bold.imageset/Contents.json deleted file mode 100644 index 328b9e2be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"face-mask-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-duotone.imageset/Contents.json deleted file mode 100644 index 3dd1a93ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"face-mask-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-fill.imageset/Contents.json deleted file mode 100644 index 9254fa96a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"face-mask-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-light.imageset/Contents.json deleted file mode 100644 index 96e1a2000..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"face-mask-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-thin.imageset/Contents.json deleted file mode 100644 index b20ab6c23..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"face-mask-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask.imageset/Contents.json deleted file mode 100644 index a2731106a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"face-mask.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-bold.imageset/Contents.json deleted file mode 100644 index 7496c87f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"facebook-logo-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-duotone.imageset/Contents.json deleted file mode 100644 index 188586da1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"facebook-logo-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-fill.imageset/Contents.json deleted file mode 100644 index 0fa7cfa28..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"facebook-logo-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-light.imageset/Contents.json deleted file mode 100644 index 63a960c82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"facebook-logo-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-thin.imageset/Contents.json deleted file mode 100644 index d8c7c729d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"facebook-logo-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo.imageset/Contents.json deleted file mode 100644 index 260311c6a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"facebook-logo.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-bold.imageset/Contents.json deleted file mode 100644 index c7ff67a4f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"factory-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-duotone.imageset/Contents.json deleted file mode 100644 index a5067ee03..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"factory-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-fill.imageset/Contents.json deleted file mode 100644 index 54b08ab39..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"factory-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-light.imageset/Contents.json deleted file mode 100644 index 53e03b270..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"factory-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-thin.imageset/Contents.json deleted file mode 100644 index ecb49c84a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"factory-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory.imageset/Contents.json deleted file mode 100644 index 8fbdfc525..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"factory.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-bold.imageset/Contents.json deleted file mode 100644 index 2aebb2a72..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"faders-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-duotone.imageset/Contents.json deleted file mode 100644 index a47cfa47f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"faders-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-fill.imageset/Contents.json deleted file mode 100644 index ae2cf5469..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"faders-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-bold.imageset/Contents.json deleted file mode 100644 index 1b5d60355..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"faders-horizontal-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-duotone.imageset/Contents.json deleted file mode 100644 index ebc1bd739..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"faders-horizontal-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-fill.imageset/Contents.json deleted file mode 100644 index 24d34a999..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"faders-horizontal-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-light.imageset/Contents.json deleted file mode 100644 index 015a80a74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"faders-horizontal-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-thin.imageset/Contents.json deleted file mode 100644 index 4bca43813..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"faders-horizontal-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal.imageset/Contents.json deleted file mode 100644 index ab96774a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"faders-horizontal.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-light.imageset/Contents.json deleted file mode 100644 index 379adee91..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"faders-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-thin.imageset/Contents.json deleted file mode 100644 index 52f0ed093..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"faders-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders.imageset/Contents.json deleted file mode 100644 index a69a6e2a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"faders.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-bold.imageset/Contents.json deleted file mode 100644 index 4e54137dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fallout-shelter-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-duotone.imageset/Contents.json deleted file mode 100644 index a5f761666..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"fallout-shelter-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-fill.imageset/Contents.json deleted file mode 100644 index bf99cbfa9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fallout-shelter-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-light.imageset/Contents.json deleted file mode 100644 index f2f75f2b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fallout-shelter-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-thin.imageset/Contents.json deleted file mode 100644 index 2a57fc946..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fallout-shelter-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter.imageset/Contents.json deleted file mode 100644 index d7dfe2593..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fallout-shelter.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-bold.imageset/Contents.json deleted file mode 100644 index 746f395d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fan-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-duotone.imageset/Contents.json deleted file mode 100644 index 329029c0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"fan-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-fill.imageset/Contents.json deleted file mode 100644 index dcc5efd90..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"fan-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-light.imageset/Contents.json deleted file mode 100644 index 32598ca62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"fan-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-thin.imageset/Contents.json deleted file mode 100644 index 905319ad1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"fan-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan.imageset/Contents.json deleted file mode 100644 index 83b23035c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"fan.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-bold.imageset/Contents.json deleted file mode 100644 index e3ff36ae7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"farm-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-duotone.imageset/Contents.json deleted file mode 100644 index 72a211583..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"farm-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-fill.imageset/Contents.json deleted file mode 100644 index 4cb97a769..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"farm-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-light.imageset/Contents.json deleted file mode 100644 index 5f751fad0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"farm-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-thin.imageset/Contents.json deleted file mode 100644 index c6d1c802e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"farm-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm.imageset/Contents.json deleted file mode 100644 index 2bc835365..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"farm.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-bold.imageset/Contents.json deleted file mode 100644 index 637a7d18d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fast-forward-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-bold.imageset/Contents.json deleted file mode 100644 index 4a5ca0e47..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"fast-forward-circle-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-duotone.imageset/Contents.json deleted file mode 100644 index 53b42f585..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fast-forward-circle-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-fill.imageset/Contents.json deleted file mode 100644 index 0ccd90853..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"fast-forward-circle-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-light.imageset/Contents.json deleted file mode 100644 index b0e92f2ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"fast-forward-circle-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-thin.imageset/Contents.json deleted file mode 100644 index 6d40570fe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"fast-forward-circle-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle.imageset/Contents.json deleted file mode 100644 index 06b3365fa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fast-forward-circle.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-duotone.imageset/Contents.json deleted file mode 100644 index 5265a29a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fast-forward-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-fill.imageset/Contents.json deleted file mode 100644 index 9e67fcaca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"fast-forward-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-light.imageset/Contents.json deleted file mode 100644 index 69a77dc19..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fast-forward-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-thin.imageset/Contents.json deleted file mode 100644 index f8598a3db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"fast-forward-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward.imageset/Contents.json deleted file mode 100644 index bdf10e9b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fast-forward.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-bold.imageset/Contents.json deleted file mode 100644 index 146bb0184..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"feather-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-duotone.imageset/Contents.json deleted file mode 100644 index 19cee14cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"feather-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-fill.imageset/Contents.json deleted file mode 100644 index 50cd4c9e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"feather-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-light.imageset/Contents.json deleted file mode 100644 index d8db32848..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"feather-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-thin.imageset/Contents.json deleted file mode 100644 index 832b3a9a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"feather-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather.imageset/Contents.json deleted file mode 100644 index d9ebcb82f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"feather.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-bold.imageset/Contents.json deleted file mode 100644 index 370405f57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fediverse-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-duotone.imageset/Contents.json deleted file mode 100644 index c36344a34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fediverse-logo-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-fill.imageset/Contents.json deleted file mode 100644 index 071740296..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fediverse-logo-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-light.imageset/Contents.json deleted file mode 100644 index e76c1432a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"fediverse-logo-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-thin.imageset/Contents.json deleted file mode 100644 index b7477226b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fediverse-logo-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo.imageset/Contents.json deleted file mode 100644 index b9989535d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fediverse-logo.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-bold.imageset/Contents.json deleted file mode 100644 index 96195f674..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"figma-logo-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-duotone.imageset/Contents.json deleted file mode 100644 index d89a241e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"figma-logo-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-fill.imageset/Contents.json deleted file mode 100644 index 0e3b11e6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"figma-logo-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-light.imageset/Contents.json deleted file mode 100644 index f7ec3071a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"figma-logo-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-thin.imageset/Contents.json deleted file mode 100644 index 9c4d86044..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"figma-logo-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo.imageset/Contents.json deleted file mode 100644 index 9bee182df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"figma-logo.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-bold.imageset/Contents.json deleted file mode 100644 index 3795501d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"file-archive-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-duotone.imageset/Contents.json deleted file mode 100644 index 362f16882..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-archive-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-fill.imageset/Contents.json deleted file mode 100644 index 75042fb8a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"file-archive-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-light.imageset/Contents.json deleted file mode 100644 index ea588cd44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-archive-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-thin.imageset/Contents.json deleted file mode 100644 index c05c856cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-archive-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive.imageset/Contents.json deleted file mode 100644 index effd7511c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-archive.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-bold.imageset/Contents.json deleted file mode 100644 index 48c292ed8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-arrow-down-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-duotone.imageset/Contents.json deleted file mode 100644 index 277a5175b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-arrow-down-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-fill.imageset/Contents.json deleted file mode 100644 index 864ecb8d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-arrow-down-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-light.imageset/Contents.json deleted file mode 100644 index a94cbd79f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-arrow-down-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-thin.imageset/Contents.json deleted file mode 100644 index 3654617db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-arrow-down-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down.imageset/Contents.json deleted file mode 100644 index 78d97048a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-arrow-down.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-bold.imageset/Contents.json deleted file mode 100644 index 9e235982f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-arrow-up-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-duotone.imageset/Contents.json deleted file mode 100644 index 82825c552..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-arrow-up-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-fill.imageset/Contents.json deleted file mode 100644 index 528df4f3a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-arrow-up-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-light.imageset/Contents.json deleted file mode 100644 index edc3ceb1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-arrow-up-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-thin.imageset/Contents.json deleted file mode 100644 index a8df8d0e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-arrow-up-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up.imageset/Contents.json deleted file mode 100644 index 3cd3681eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-arrow-up.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-bold.imageset/Contents.json deleted file mode 100644 index d2842c6ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"file-audio-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-duotone.imageset/Contents.json deleted file mode 100644 index c6a0b3d83..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-audio-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-fill.imageset/Contents.json deleted file mode 100644 index ef41a5cab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-audio-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-light.imageset/Contents.json deleted file mode 100644 index 19568fd4f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-audio-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-thin.imageset/Contents.json deleted file mode 100644 index 4b97fe658..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-audio-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio.imageset/Contents.json deleted file mode 100644 index babde67e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-audio.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-bold.imageset/Contents.json deleted file mode 100644 index 32fe635ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-bold.imageset/Contents.json deleted file mode 100644 index caf925812..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-c-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-duotone.imageset/Contents.json deleted file mode 100644 index 178b9c4a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-c-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-fill.imageset/Contents.json deleted file mode 100644 index 20ccf01cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-c-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-light.imageset/Contents.json deleted file mode 100644 index 1ace22ba3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-c-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-bold.imageset/Contents.json deleted file mode 100644 index 58328c179..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-c-sharp-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-duotone.imageset/Contents.json deleted file mode 100644 index e05a3c343..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-c-sharp-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-fill.imageset/Contents.json deleted file mode 100644 index 6787c089e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-c-sharp-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-light.imageset/Contents.json deleted file mode 100644 index dba3d693e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-c-sharp-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-thin.imageset/Contents.json deleted file mode 100644 index 52c42fb89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-c-sharp-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp.imageset/Contents.json deleted file mode 100644 index 1e0f2fd95..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-c-sharp.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-thin.imageset/Contents.json deleted file mode 100644 index e2141f94b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-c-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c.imageset/Contents.json deleted file mode 100644 index 339c2841a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-c.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-bold.imageset/Contents.json deleted file mode 100644 index 6f1501bef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-cloud-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-duotone.imageset/Contents.json deleted file mode 100644 index edffc1d21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-cloud-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-fill.imageset/Contents.json deleted file mode 100644 index de6553c0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"file-cloud-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-light.imageset/Contents.json deleted file mode 100644 index f2537c3da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-cloud-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-thin.imageset/Contents.json deleted file mode 100644 index 862887728..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-cloud-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud.imageset/Contents.json deleted file mode 100644 index b24cacf51..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-cloud.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-bold.imageset/Contents.json deleted file mode 100644 index 05b9c92ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-code-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-duotone.imageset/Contents.json deleted file mode 100644 index 212d78381..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-code-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-fill.imageset/Contents.json deleted file mode 100644 index 8a3a52617..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-code-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-light.imageset/Contents.json deleted file mode 100644 index 152db77d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-code-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-thin.imageset/Contents.json deleted file mode 100644 index c5f1fec97..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-code-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code.imageset/Contents.json deleted file mode 100644 index ba3e0d060..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-code.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-bold.imageset/Contents.json deleted file mode 100644 index 8a0fab9e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-cpp-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-duotone.imageset/Contents.json deleted file mode 100644 index a1146156e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-cpp-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-fill.imageset/Contents.json deleted file mode 100644 index 2a3802be1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-cpp-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-light.imageset/Contents.json deleted file mode 100644 index e50095282..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-cpp-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-thin.imageset/Contents.json deleted file mode 100644 index 6173e0e36..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-cpp-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp.imageset/Contents.json deleted file mode 100644 index 3e9a7e492..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"file-cpp.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-bold.imageset/Contents.json deleted file mode 100644 index aac37716f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"file-css-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-duotone.imageset/Contents.json deleted file mode 100644 index 893ca6a0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"file-css-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-fill.imageset/Contents.json deleted file mode 100644 index 6d66cd065..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-css-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-light.imageset/Contents.json deleted file mode 100644 index e2cc93a42..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-css-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-thin.imageset/Contents.json deleted file mode 100644 index c081129cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-css-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css.imageset/Contents.json deleted file mode 100644 index 0d83497f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"file-css.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-bold.imageset/Contents.json deleted file mode 100644 index fd0074c6c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-csv-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-duotone.imageset/Contents.json deleted file mode 100644 index 6c67333fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-csv-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-fill.imageset/Contents.json deleted file mode 100644 index 6f29a2c2b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-csv-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-light.imageset/Contents.json deleted file mode 100644 index d18d98179..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-csv-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-thin.imageset/Contents.json deleted file mode 100644 index f6d820da0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-csv-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv.imageset/Contents.json deleted file mode 100644 index a01c379ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-csv.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-bold.imageset/Contents.json deleted file mode 100644 index 790dcaf66..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-dashed-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-duotone.imageset/Contents.json deleted file mode 100644 index 499add0e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-dashed-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-fill.imageset/Contents.json deleted file mode 100644 index 54b092bcf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"file-dashed-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-light.imageset/Contents.json deleted file mode 100644 index ec0785dc3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"file-dashed-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-thin.imageset/Contents.json deleted file mode 100644 index 3881c5df3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-dashed-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed.imageset/Contents.json deleted file mode 100644 index ab221c444..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-dashed.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-bold.imageset/Contents.json deleted file mode 100644 index 7101c5d2a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-doc-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-duotone.imageset/Contents.json deleted file mode 100644 index df44c2bc9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-doc-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-fill.imageset/Contents.json deleted file mode 100644 index af5d0183a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-doc-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-light.imageset/Contents.json deleted file mode 100644 index 004803eda..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-doc-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-thin.imageset/Contents.json deleted file mode 100644 index c635f7eee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-doc-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc.imageset/Contents.json deleted file mode 100644 index 49f4f4bef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-doc.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-duotone.imageset/Contents.json deleted file mode 100644 index 9dd6562d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-fill.imageset/Contents.json deleted file mode 100644 index d0a1fca44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-bold.imageset/Contents.json deleted file mode 100644 index 7509fbc5c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-html-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-duotone.imageset/Contents.json deleted file mode 100644 index 6b68e57d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-html-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-fill.imageset/Contents.json deleted file mode 100644 index bd5b68ed6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-html-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-light.imageset/Contents.json deleted file mode 100644 index 6c100b2a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-html-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-thin.imageset/Contents.json deleted file mode 100644 index d67a545d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-html-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html.imageset/Contents.json deleted file mode 100644 index 22b455009..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-html.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-bold.imageset/Contents.json deleted file mode 100644 index a64b155aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"file-image-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-duotone.imageset/Contents.json deleted file mode 100644 index 47c27f23e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-image-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-fill.imageset/Contents.json deleted file mode 100644 index ed88c0999..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-image-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-light.imageset/Contents.json deleted file mode 100644 index 8becff67d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-image-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-thin.imageset/Contents.json deleted file mode 100644 index 07bac3503..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-image-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image.imageset/Contents.json deleted file mode 100644 index f9dbb602e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"file-image.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-bold.imageset/Contents.json deleted file mode 100644 index 2ad479be4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-ini-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-duotone.imageset/Contents.json deleted file mode 100644 index 0bde9c247..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-ini-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-fill.imageset/Contents.json deleted file mode 100644 index 93655e4e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-ini-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-light.imageset/Contents.json deleted file mode 100644 index e19e0fb5b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-ini-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-thin.imageset/Contents.json deleted file mode 100644 index 23191302f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-ini-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini.imageset/Contents.json deleted file mode 100644 index 112ca5bdd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-ini.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-bold.imageset/Contents.json deleted file mode 100644 index 5bea5bda4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-jpg-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-duotone.imageset/Contents.json deleted file mode 100644 index f9aef99ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-jpg-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-fill.imageset/Contents.json deleted file mode 100644 index f95a1b884..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-jpg-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-light.imageset/Contents.json deleted file mode 100644 index f4f091aea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-jpg-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-thin.imageset/Contents.json deleted file mode 100644 index 2434b7ba5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-jpg-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg.imageset/Contents.json deleted file mode 100644 index b08464073..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-jpg.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-bold.imageset/Contents.json deleted file mode 100644 index b7dc2139a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"file-js-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-duotone.imageset/Contents.json deleted file mode 100644 index 52a75bf44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-js-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-fill.imageset/Contents.json deleted file mode 100644 index ff4acc390..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"file-js-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-light.imageset/Contents.json deleted file mode 100644 index 50a90ab72..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-js-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-thin.imageset/Contents.json deleted file mode 100644 index 45321941e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-js-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js.imageset/Contents.json deleted file mode 100644 index cf6b9e6e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-js.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-bold.imageset/Contents.json deleted file mode 100644 index 42473e966..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-jsx-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-duotone.imageset/Contents.json deleted file mode 100644 index 34df9336d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-jsx-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-fill.imageset/Contents.json deleted file mode 100644 index 55bcff6a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-jsx-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-light.imageset/Contents.json deleted file mode 100644 index 677a5d4e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-jsx-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-thin.imageset/Contents.json deleted file mode 100644 index c9650f90f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-jsx-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx.imageset/Contents.json deleted file mode 100644 index 7d5855c95..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-jsx.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-light.imageset/Contents.json deleted file mode 100644 index 67b2ac78b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-bold.imageset/Contents.json deleted file mode 100644 index 2889647fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-lock-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-duotone.imageset/Contents.json deleted file mode 100644 index 228cb3f4a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-lock-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-fill.imageset/Contents.json deleted file mode 100644 index 462eb0575..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"file-lock-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-light.imageset/Contents.json deleted file mode 100644 index 80537f377..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-lock-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-thin.imageset/Contents.json deleted file mode 100644 index 16bc79cbb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-lock-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock.imageset/Contents.json deleted file mode 100644 index 02fb84c5c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-lock.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-bold.imageset/Contents.json deleted file mode 100644 index 0d6d01dc3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-magnifying-glass-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-duotone.imageset/Contents.json deleted file mode 100644 index fd2e39984..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-magnifying-glass-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-fill.imageset/Contents.json deleted file mode 100644 index e95d1b7e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-magnifying-glass-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-light.imageset/Contents.json deleted file mode 100644 index c40729f65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-magnifying-glass-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-thin.imageset/Contents.json deleted file mode 100644 index 578aa022c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-magnifying-glass-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass.imageset/Contents.json deleted file mode 100644 index 27c0c79c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-magnifying-glass.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-bold.imageset/Contents.json deleted file mode 100644 index 240b9ceee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-md-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-duotone.imageset/Contents.json deleted file mode 100644 index f320360ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-md-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-fill.imageset/Contents.json deleted file mode 100644 index cec17d4b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-md-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-light.imageset/Contents.json deleted file mode 100644 index 9a9c23708..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-md-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-thin.imageset/Contents.json deleted file mode 100644 index f1305ae3c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-md-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md.imageset/Contents.json deleted file mode 100644 index e00d66270..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-md.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-bold.imageset/Contents.json deleted file mode 100644 index 55e68973b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"file-minus-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-duotone.imageset/Contents.json deleted file mode 100644 index e54c2dab9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-minus-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-fill.imageset/Contents.json deleted file mode 100644 index fb5388740..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"file-minus-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-light.imageset/Contents.json deleted file mode 100644 index b4a5b0244..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-minus-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-thin.imageset/Contents.json deleted file mode 100644 index 0068282d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-minus-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus.imageset/Contents.json deleted file mode 100644 index 4b39795a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-minus.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-bold.imageset/Contents.json deleted file mode 100644 index fceebffab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-pdf-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-duotone.imageset/Contents.json deleted file mode 100644 index 052846ca5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-pdf-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-fill.imageset/Contents.json deleted file mode 100644 index 2168b9609..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-pdf-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-light.imageset/Contents.json deleted file mode 100644 index d62e55200..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-pdf-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-thin.imageset/Contents.json deleted file mode 100644 index f441144d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-pdf-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf.imageset/Contents.json deleted file mode 100644 index 57ebb9f78..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-pdf.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-bold.imageset/Contents.json deleted file mode 100644 index 4e058688f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-plus-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-duotone.imageset/Contents.json deleted file mode 100644 index f263046ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-plus-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-fill.imageset/Contents.json deleted file mode 100644 index ea288afba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-plus-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-light.imageset/Contents.json deleted file mode 100644 index bcd6cd4f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-plus-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-thin.imageset/Contents.json deleted file mode 100644 index ffe2b1507..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-plus-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus.imageset/Contents.json deleted file mode 100644 index e3a874f75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-plus.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-bold.imageset/Contents.json deleted file mode 100644 index f962dc1bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-png-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-duotone.imageset/Contents.json deleted file mode 100644 index 9fa128804..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-png-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-fill.imageset/Contents.json deleted file mode 100644 index 476de9a51..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-png-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-light.imageset/Contents.json deleted file mode 100644 index e11b85aad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-png-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-thin.imageset/Contents.json deleted file mode 100644 index 01c9db78d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-png-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png.imageset/Contents.json deleted file mode 100644 index ae46c2d11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-png.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-bold.imageset/Contents.json deleted file mode 100644 index d03f764c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"file-ppt-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-duotone.imageset/Contents.json deleted file mode 100644 index 3badf1e02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-ppt-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-fill.imageset/Contents.json deleted file mode 100644 index aea6dbe89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-ppt-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-light.imageset/Contents.json deleted file mode 100644 index bef62c81a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-ppt-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-thin.imageset/Contents.json deleted file mode 100644 index ba2d32d90..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-ppt-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt.imageset/Contents.json deleted file mode 100644 index 0d1b5824e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-ppt.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-bold.imageset/Contents.json deleted file mode 100644 index b5b41449f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-py-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-duotone.imageset/Contents.json deleted file mode 100644 index 27821931a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-py-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-fill.imageset/Contents.json deleted file mode 100644 index fd847d4c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-py-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-light.imageset/Contents.json deleted file mode 100644 index 08fc95f03..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"file-py-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-thin.imageset/Contents.json deleted file mode 100644 index 7264f83e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-py-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py.imageset/Contents.json deleted file mode 100644 index 0eae36d39..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-py.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-bold.imageset/Contents.json deleted file mode 100644 index e3e520bf5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-rs-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-duotone.imageset/Contents.json deleted file mode 100644 index 6b0af5fff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-rs-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-fill.imageset/Contents.json deleted file mode 100644 index 17b054700..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"file-rs-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-light.imageset/Contents.json deleted file mode 100644 index a0b632027..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-rs-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-thin.imageset/Contents.json deleted file mode 100644 index 8ce115177..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"file-rs-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs.imageset/Contents.json deleted file mode 100644 index b173be1fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-rs.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-bold.imageset/Contents.json deleted file mode 100644 index d27ca2c15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-sql-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-duotone.imageset/Contents.json deleted file mode 100644 index 6ab79b501..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-sql-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-fill.imageset/Contents.json deleted file mode 100644 index 739b0e317..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-sql-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-light.imageset/Contents.json deleted file mode 100644 index b4acf6b2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-sql-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-thin.imageset/Contents.json deleted file mode 100644 index cc7061bb1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-sql-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql.imageset/Contents.json deleted file mode 100644 index dc461a1a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-sql.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-bold.imageset/Contents.json deleted file mode 100644 index fcd481382..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-svg-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-duotone.imageset/Contents.json deleted file mode 100644 index 12e24e6e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-svg-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-fill.imageset/Contents.json deleted file mode 100644 index e723cf10d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-svg-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-light.imageset/Contents.json deleted file mode 100644 index 8c0e1dd68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"file-svg-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-thin.imageset/Contents.json deleted file mode 100644 index c95859b1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-svg-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg.imageset/Contents.json deleted file mode 100644 index ad530b481..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-svg.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-bold.imageset/Contents.json deleted file mode 100644 index 7d053b3cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-text-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-duotone.imageset/Contents.json deleted file mode 100644 index 675202b49..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"file-text-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-fill.imageset/Contents.json deleted file mode 100644 index 5527567ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-text-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-light.imageset/Contents.json deleted file mode 100644 index a6f5d15cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-text-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-thin.imageset/Contents.json deleted file mode 100644 index 1febf138e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-text-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text.imageset/Contents.json deleted file mode 100644 index d6a1eab4f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-text.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-thin.imageset/Contents.json deleted file mode 100644 index f45f2e6bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-bold.imageset/Contents.json deleted file mode 100644 index 2ac077b79..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-ts-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-duotone.imageset/Contents.json deleted file mode 100644 index 5837e0ffb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-ts-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-fill.imageset/Contents.json deleted file mode 100644 index 5875ae007..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-ts-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-light.imageset/Contents.json deleted file mode 100644 index 0366a34a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-ts-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-thin.imageset/Contents.json deleted file mode 100644 index f9ccff0d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-ts-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts.imageset/Contents.json deleted file mode 100644 index 021611934..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-ts.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-bold.imageset/Contents.json deleted file mode 100644 index 7050de7d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-tsx-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-duotone.imageset/Contents.json deleted file mode 100644 index b9210ca83..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-tsx-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-fill.imageset/Contents.json deleted file mode 100644 index 558c828b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-tsx-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-light.imageset/Contents.json deleted file mode 100644 index 9865c1d1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"file-tsx-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-thin.imageset/Contents.json deleted file mode 100644 index d62ab8fc8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-tsx-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx.imageset/Contents.json deleted file mode 100644 index f095b2376..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-tsx.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-bold.imageset/Contents.json deleted file mode 100644 index 791d7b2df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-txt-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-duotone.imageset/Contents.json deleted file mode 100644 index 25a1b5e1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-txt-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-fill.imageset/Contents.json deleted file mode 100644 index 2524535c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-txt-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-light.imageset/Contents.json deleted file mode 100644 index 22c4759a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-txt-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-thin.imageset/Contents.json deleted file mode 100644 index 5ce548ee3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"file-txt-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt.imageset/Contents.json deleted file mode 100644 index 04bdf8fd8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-txt.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-bold.imageset/Contents.json deleted file mode 100644 index 82e83102e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-video-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-duotone.imageset/Contents.json deleted file mode 100644 index 1b72d7dd5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-video-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-fill.imageset/Contents.json deleted file mode 100644 index 2a4389c8e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-video-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-light.imageset/Contents.json deleted file mode 100644 index 7f7af4ca9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-video-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-thin.imageset/Contents.json deleted file mode 100644 index b6e27f854..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"file-video-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video.imageset/Contents.json deleted file mode 100644 index ea98795dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-video.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-bold.imageset/Contents.json deleted file mode 100644 index 9be8cfb54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-vue-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-duotone.imageset/Contents.json deleted file mode 100644 index c1eb32f0c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"file-vue-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-fill.imageset/Contents.json deleted file mode 100644 index 0eb010567..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-vue-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-light.imageset/Contents.json deleted file mode 100644 index df37afc6e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-vue-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-thin.imageset/Contents.json deleted file mode 100644 index 48b482c11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-vue-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue.imageset/Contents.json deleted file mode 100644 index 280805610..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"file-vue.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-bold.imageset/Contents.json deleted file mode 100644 index df84634f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-x-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-duotone.imageset/Contents.json deleted file mode 100644 index 19f7fb754..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"file-x-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-fill.imageset/Contents.json deleted file mode 100644 index 143079675..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-x-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-light.imageset/Contents.json deleted file mode 100644 index 3e82b5709..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-x-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-thin.imageset/Contents.json deleted file mode 100644 index c6e0f2d34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"file-x-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x.imageset/Contents.json deleted file mode 100644 index 4c488dd57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file-x.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-bold.imageset/Contents.json deleted file mode 100644 index 3ccf9688d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"file-xls-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-duotone.imageset/Contents.json deleted file mode 100644 index 166d300f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-xls-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-fill.imageset/Contents.json deleted file mode 100644 index c26458164..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-xls-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-light.imageset/Contents.json deleted file mode 100644 index 72c40515b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-xls-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-thin.imageset/Contents.json deleted file mode 100644 index 2af516b11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-xls-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls.imageset/Contents.json deleted file mode 100644 index 37d2cac43..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"file-xls.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-bold.imageset/Contents.json deleted file mode 100644 index 0af9a98bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-zip-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-duotone.imageset/Contents.json deleted file mode 100644 index 6f3a5c557..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-zip-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-fill.imageset/Contents.json deleted file mode 100644 index 0222c1469..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-zip-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-light.imageset/Contents.json deleted file mode 100644 index d6ae4c1c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"file-zip-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-thin.imageset/Contents.json deleted file mode 100644 index 7dd331cc6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-zip-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip.imageset/Contents.json deleted file mode 100644 index de3d7a88a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"file-zip.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file.imageset/Contents.json deleted file mode 100644 index 71f7609f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"file.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-bold.imageset/Contents.json deleted file mode 100644 index ac442b8e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"files-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-duotone.imageset/Contents.json deleted file mode 100644 index 05ddd7fc8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"files-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-fill.imageset/Contents.json deleted file mode 100644 index 97e3c9d8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"files-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-light.imageset/Contents.json deleted file mode 100644 index 7ba89d619..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"files-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-thin.imageset/Contents.json deleted file mode 100644 index e8405a901..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"files-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files.imageset/Contents.json deleted file mode 100644 index c0c516cf8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"files.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-bold.imageset/Contents.json deleted file mode 100644 index b6a7cbe4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"film-reel-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-duotone.imageset/Contents.json deleted file mode 100644 index 7d7b61c89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"film-reel-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-fill.imageset/Contents.json deleted file mode 100644 index 4a82323ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"film-reel-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-light.imageset/Contents.json deleted file mode 100644 index fc7fa7744..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"film-reel-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-thin.imageset/Contents.json deleted file mode 100644 index 3964b3292..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"film-reel-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel.imageset/Contents.json deleted file mode 100644 index 06ab7e07f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"film-reel.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-bold.imageset/Contents.json deleted file mode 100644 index 31519f257..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"film-script-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-duotone.imageset/Contents.json deleted file mode 100644 index a1a2b613b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"film-script-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-fill.imageset/Contents.json deleted file mode 100644 index 65a36c874..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"film-script-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-light.imageset/Contents.json deleted file mode 100644 index 514a3a9f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"film-script-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-thin.imageset/Contents.json deleted file mode 100644 index d0e711330..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"film-script-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script.imageset/Contents.json deleted file mode 100644 index 74453afda..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"film-script.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-bold.imageset/Contents.json deleted file mode 100644 index da5bfb22f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"film-slate-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-duotone.imageset/Contents.json deleted file mode 100644 index d09f3755e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"film-slate-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-fill.imageset/Contents.json deleted file mode 100644 index d7fe2382e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"film-slate-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-light.imageset/Contents.json deleted file mode 100644 index 270bef8c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"film-slate-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-thin.imageset/Contents.json deleted file mode 100644 index 3c3a70099..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"film-slate-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate.imageset/Contents.json deleted file mode 100644 index c8d26a958..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"film-slate.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-bold.imageset/Contents.json deleted file mode 100644 index 4982a3a91..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"film-strip-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-duotone.imageset/Contents.json deleted file mode 100644 index e0ea64bce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"film-strip-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-fill.imageset/Contents.json deleted file mode 100644 index 832a9aa0c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"film-strip-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-light.imageset/Contents.json deleted file mode 100644 index eddf220c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"film-strip-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-thin.imageset/Contents.json deleted file mode 100644 index 129140582..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"film-strip-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip.imageset/Contents.json deleted file mode 100644 index 5c7692f47..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"film-strip.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-bold.imageset/Contents.json deleted file mode 100644 index d8e946092..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"fingerprint-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-duotone.imageset/Contents.json deleted file mode 100644 index 31f33977a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"fingerprint-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-fill.imageset/Contents.json deleted file mode 100644 index 19c64e39a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fingerprint-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-light.imageset/Contents.json deleted file mode 100644 index 3a23a455e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fingerprint-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-bold.imageset/Contents.json deleted file mode 100644 index 54a8ca8d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fingerprint-simple-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-duotone.imageset/Contents.json deleted file mode 100644 index ed2c202f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fingerprint-simple-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-fill.imageset/Contents.json deleted file mode 100644 index 1b2a5b937..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"fingerprint-simple-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-light.imageset/Contents.json deleted file mode 100644 index 56368b068..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fingerprint-simple-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-thin.imageset/Contents.json deleted file mode 100644 index 016638a2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fingerprint-simple-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple.imageset/Contents.json deleted file mode 100644 index 02aab1a3b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"fingerprint-simple.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-thin.imageset/Contents.json deleted file mode 100644 index f6064639c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"fingerprint-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint.imageset/Contents.json deleted file mode 100644 index bebcc1bb6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"fingerprint.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-bold.imageset/Contents.json deleted file mode 100644 index ac87287c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"finn-the-human-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-duotone.imageset/Contents.json deleted file mode 100644 index 4c4309427..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"finn-the-human-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-fill.imageset/Contents.json deleted file mode 100644 index 906a385cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"finn-the-human-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-light.imageset/Contents.json deleted file mode 100644 index 0622447a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"finn-the-human-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-thin.imageset/Contents.json deleted file mode 100644 index 6fe3df235..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"finn-the-human-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human.imageset/Contents.json deleted file mode 100644 index 6be9d0cbf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"finn-the-human.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-bold.imageset/Contents.json deleted file mode 100644 index 8ae0c52be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fire-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-duotone.imageset/Contents.json deleted file mode 100644 index 22d188f45..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"fire-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-bold.imageset/Contents.json deleted file mode 100644 index d06e96cc7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fire-extinguisher-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-duotone.imageset/Contents.json deleted file mode 100644 index 343818fb8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"fire-extinguisher-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-fill.imageset/Contents.json deleted file mode 100644 index 602badaa6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fire-extinguisher-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-light.imageset/Contents.json deleted file mode 100644 index 78f777932..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fire-extinguisher-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-thin.imageset/Contents.json deleted file mode 100644 index a33103bda..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fire-extinguisher-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher.imageset/Contents.json deleted file mode 100644 index cf8b27a2a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"fire-extinguisher.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-fill.imageset/Contents.json deleted file mode 100644 index 6ca12ca85..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fire-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-light.imageset/Contents.json deleted file mode 100644 index 63ff6276a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fire-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-bold.imageset/Contents.json deleted file mode 100644 index 068282aee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fire-simple-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-duotone.imageset/Contents.json deleted file mode 100644 index e525f0a61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fire-simple-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-fill.imageset/Contents.json deleted file mode 100644 index 2781d0209..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"fire-simple-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-light.imageset/Contents.json deleted file mode 100644 index c4f20a3e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fire-simple-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-thin.imageset/Contents.json deleted file mode 100644 index 8047b6023..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"fire-simple-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple.imageset/Contents.json deleted file mode 100644 index 75aebde01..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"fire-simple.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-thin.imageset/Contents.json deleted file mode 100644 index 6aba07a21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"fire-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-bold.imageset/Contents.json deleted file mode 100644 index 8450b7fb3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"fire-truck-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-duotone.imageset/Contents.json deleted file mode 100644 index 07ef22e56..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"fire-truck-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-fill.imageset/Contents.json deleted file mode 100644 index 11f6e6f1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fire-truck-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-light.imageset/Contents.json deleted file mode 100644 index 132db718c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"fire-truck-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-thin.imageset/Contents.json deleted file mode 100644 index 3d87a5098..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"fire-truck-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck.imageset/Contents.json deleted file mode 100644 index e093c02a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"fire-truck.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire.imageset/Contents.json deleted file mode 100644 index b80f4a6fe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"fire.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-bold.imageset/Contents.json deleted file mode 100644 index f30d47cf0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"first-aid-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-duotone.imageset/Contents.json deleted file mode 100644 index 728bb6350..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"first-aid-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-fill.imageset/Contents.json deleted file mode 100644 index 6ed871e30..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"first-aid-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-bold.imageset/Contents.json deleted file mode 100644 index fc0ccb341..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"first-aid-kit-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-duotone.imageset/Contents.json deleted file mode 100644 index ad767b74a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"first-aid-kit-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-fill.imageset/Contents.json deleted file mode 100644 index d1b2259ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"first-aid-kit-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-light.imageset/Contents.json deleted file mode 100644 index c6a5fbe0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"first-aid-kit-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-thin.imageset/Contents.json deleted file mode 100644 index cb3e84962..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"first-aid-kit-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit.imageset/Contents.json deleted file mode 100644 index 257741944..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"first-aid-kit.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-light.imageset/Contents.json deleted file mode 100644 index c7a41adfd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"first-aid-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-thin.imageset/Contents.json deleted file mode 100644 index 41aa300fe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"first-aid-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid.imageset/Contents.json deleted file mode 100644 index c52c6cb53..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"first-aid.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-bold.imageset/Contents.json deleted file mode 100644 index b339cd5d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"fish-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-duotone.imageset/Contents.json deleted file mode 100644 index cd6e8195d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fish-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-fill.imageset/Contents.json deleted file mode 100644 index 429342c62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fish-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-light.imageset/Contents.json deleted file mode 100644 index b7afb6f38..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"fish-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-bold.imageset/Contents.json deleted file mode 100644 index 11a4bfe68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"fish-simple-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-duotone.imageset/Contents.json deleted file mode 100644 index e6ce80280..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fish-simple-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-fill.imageset/Contents.json deleted file mode 100644 index 831447440..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"fish-simple-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-light.imageset/Contents.json deleted file mode 100644 index 1efa00767..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fish-simple-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-thin.imageset/Contents.json deleted file mode 100644 index a8e9fff90..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fish-simple-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple.imageset/Contents.json deleted file mode 100644 index cfbd17d59..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"fish-simple.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-thin.imageset/Contents.json deleted file mode 100644 index c8a6fcaf0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fish-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish.imageset/Contents.json deleted file mode 100644 index b2b1c93b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fish.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-bold.imageset/Contents.json deleted file mode 100644 index 0e411f103..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"flag-banner-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-duotone.imageset/Contents.json deleted file mode 100644 index acc733e18..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flag-banner-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fill.imageset/Contents.json deleted file mode 100644 index 81fd97847..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flag-banner-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-bold.imageset/Contents.json deleted file mode 100644 index b11ae7c71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flag-banner-fold-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-duotone.imageset/Contents.json deleted file mode 100644 index a0b0e0aea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"flag-banner-fold-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-fill.imageset/Contents.json deleted file mode 100644 index ddc3dcaaf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"flag-banner-fold-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-light.imageset/Contents.json deleted file mode 100644 index ddeec00c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"flag-banner-fold-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-thin.imageset/Contents.json deleted file mode 100644 index 2fb0deb4b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flag-banner-fold-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold.imageset/Contents.json deleted file mode 100644 index f75e83e7e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flag-banner-fold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-light.imageset/Contents.json deleted file mode 100644 index 7876c1c6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"flag-banner-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-thin.imageset/Contents.json deleted file mode 100644 index 82b2e305a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"flag-banner-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner.imageset/Contents.json deleted file mode 100644 index 6258c9a1e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flag-banner.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-bold.imageset/Contents.json deleted file mode 100644 index a10e48e21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flag-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-bold.imageset/Contents.json deleted file mode 100644 index 2e34ceb89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"flag-checkered-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-duotone.imageset/Contents.json deleted file mode 100644 index 8a0ff490d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"flag-checkered-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-fill.imageset/Contents.json deleted file mode 100644 index 4c3d2e42e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"flag-checkered-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-light.imageset/Contents.json deleted file mode 100644 index 4f4428755..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flag-checkered-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-thin.imageset/Contents.json deleted file mode 100644 index 6b8583863..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"flag-checkered-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered.imageset/Contents.json deleted file mode 100644 index bae771e91..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flag-checkered.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-duotone.imageset/Contents.json deleted file mode 100644 index 994a78b88..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flag-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-fill.imageset/Contents.json deleted file mode 100644 index 69763cdea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"flag-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-light.imageset/Contents.json deleted file mode 100644 index 4aed3140c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flag-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-bold.imageset/Contents.json deleted file mode 100644 index e634c526d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flag-pennant-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-duotone.imageset/Contents.json deleted file mode 100644 index b3aecde0f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flag-pennant-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-fill.imageset/Contents.json deleted file mode 100644 index c0b390323..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"flag-pennant-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-light.imageset/Contents.json deleted file mode 100644 index c0c3f3bde..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"flag-pennant-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-thin.imageset/Contents.json deleted file mode 100644 index 129d8c21f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flag-pennant-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant.imageset/Contents.json deleted file mode 100644 index b5d6b15e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"flag-pennant.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-thin.imageset/Contents.json deleted file mode 100644 index ff8dc3548..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"flag-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag.imageset/Contents.json deleted file mode 100644 index 0f1f98a3e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"flag.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-bold.imageset/Contents.json deleted file mode 100644 index 54f3863a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flame-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-duotone.imageset/Contents.json deleted file mode 100644 index f19e60591..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"flame-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-fill.imageset/Contents.json deleted file mode 100644 index 9d18a5a48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"flame-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-light.imageset/Contents.json deleted file mode 100644 index 23132b351..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"flame-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-thin.imageset/Contents.json deleted file mode 100644 index 0f918dc35..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"flame-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame.imageset/Contents.json deleted file mode 100644 index 9f32f8884..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flame.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-bold.imageset/Contents.json deleted file mode 100644 index 92f27a4ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"flashlight-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-duotone.imageset/Contents.json deleted file mode 100644 index 9861abb16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"flashlight-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-fill.imageset/Contents.json deleted file mode 100644 index 5f6c4a474..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flashlight-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-light.imageset/Contents.json deleted file mode 100644 index b53dda1c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flashlight-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-thin.imageset/Contents.json deleted file mode 100644 index 1522e12ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flashlight-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight.imageset/Contents.json deleted file mode 100644 index 1841d901a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flashlight.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-bold.imageset/Contents.json deleted file mode 100644 index 08f54fe0c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"flask-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-duotone.imageset/Contents.json deleted file mode 100644 index c18d4d54c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"flask-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-fill.imageset/Contents.json deleted file mode 100644 index 2bb073f59..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flask-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-light.imageset/Contents.json deleted file mode 100644 index 8b27207c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flask-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-thin.imageset/Contents.json deleted file mode 100644 index 8f34e119d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"flask-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask.imageset/Contents.json deleted file mode 100644 index 1a7898b10..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flask.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-bold.imageset/Contents.json deleted file mode 100644 index 232c03943..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"flip-horizontal-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-duotone.imageset/Contents.json deleted file mode 100644 index a3bb43589..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"flip-horizontal-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-fill.imageset/Contents.json deleted file mode 100644 index ed57f6169..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flip-horizontal-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-light.imageset/Contents.json deleted file mode 100644 index f77261d86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"flip-horizontal-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-thin.imageset/Contents.json deleted file mode 100644 index d474937b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"flip-horizontal-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal.imageset/Contents.json deleted file mode 100644 index 309f305ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flip-horizontal.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-bold.imageset/Contents.json deleted file mode 100644 index 5c6403239..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"flip-vertical-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-duotone.imageset/Contents.json deleted file mode 100644 index c854c7692..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"flip-vertical-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-fill.imageset/Contents.json deleted file mode 100644 index bc182d203..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flip-vertical-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-light.imageset/Contents.json deleted file mode 100644 index 80c0f3315..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"flip-vertical-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-thin.imageset/Contents.json deleted file mode 100644 index 6287bb708..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"flip-vertical-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical.imageset/Contents.json deleted file mode 100644 index a9fa12077..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"flip-vertical.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-bold.imageset/Contents.json deleted file mode 100644 index 2de28b902..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"floppy-disk-back-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-duotone.imageset/Contents.json deleted file mode 100644 index d6ba9e2af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"floppy-disk-back-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-fill.imageset/Contents.json deleted file mode 100644 index c4daa5939..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"floppy-disk-back-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-light.imageset/Contents.json deleted file mode 100644 index a66a027f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"floppy-disk-back-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-thin.imageset/Contents.json deleted file mode 100644 index 869e09399..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"floppy-disk-back-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back.imageset/Contents.json deleted file mode 100644 index a71724b78..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"floppy-disk-back.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-bold.imageset/Contents.json deleted file mode 100644 index 44515efdd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"floppy-disk-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-duotone.imageset/Contents.json deleted file mode 100644 index ddcadf571..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"floppy-disk-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-fill.imageset/Contents.json deleted file mode 100644 index 96fc4d172..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"floppy-disk-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-light.imageset/Contents.json deleted file mode 100644 index 624a02c93..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"floppy-disk-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-thin.imageset/Contents.json deleted file mode 100644 index 83516f0a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"floppy-disk-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk.imageset/Contents.json deleted file mode 100644 index 21d29f4c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"floppy-disk.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-bold.imageset/Contents.json deleted file mode 100644 index 9eb11fe14..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"flow-arrow-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-duotone.imageset/Contents.json deleted file mode 100644 index fb8edc996..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"flow-arrow-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-fill.imageset/Contents.json deleted file mode 100644 index 769e0f420..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flow-arrow-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-light.imageset/Contents.json deleted file mode 100644 index 413304e11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"flow-arrow-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-thin.imageset/Contents.json deleted file mode 100644 index 8c55606b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flow-arrow-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow.imageset/Contents.json deleted file mode 100644 index c377c812f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flow-arrow.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-bold.imageset/Contents.json deleted file mode 100644 index 05515e9e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"flower-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-duotone.imageset/Contents.json deleted file mode 100644 index ad68c1383..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"flower-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-fill.imageset/Contents.json deleted file mode 100644 index cf408f03e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"flower-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-light.imageset/Contents.json deleted file mode 100644 index 6452a857f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"flower-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-bold.imageset/Contents.json deleted file mode 100644 index 233efecc5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"flower-lotus-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-duotone.imageset/Contents.json deleted file mode 100644 index 3fd2d89d6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"flower-lotus-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-fill.imageset/Contents.json deleted file mode 100644 index 768c0dedf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"flower-lotus-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-light.imageset/Contents.json deleted file mode 100644 index 11ee7684e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"flower-lotus-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-thin.imageset/Contents.json deleted file mode 100644 index d5ae65906..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"flower-lotus-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus.imageset/Contents.json deleted file mode 100644 index 3ea33ae67..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flower-lotus.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-thin.imageset/Contents.json deleted file mode 100644 index 2cd9f38e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"flower-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-bold.imageset/Contents.json deleted file mode 100644 index 0fc5b5001..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flower-tulip-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-duotone.imageset/Contents.json deleted file mode 100644 index 9b26eee06..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flower-tulip-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-fill.imageset/Contents.json deleted file mode 100644 index 268349367..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"flower-tulip-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-light.imageset/Contents.json deleted file mode 100644 index 2855cefe4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"flower-tulip-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-thin.imageset/Contents.json deleted file mode 100644 index 71e560f77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flower-tulip-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip.imageset/Contents.json deleted file mode 100644 index 82582a52d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flower-tulip.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower.imageset/Contents.json deleted file mode 100644 index f48456c03..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flower.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-bold.imageset/Contents.json deleted file mode 100644 index 8c4c6f019..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flying-saucer-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-duotone.imageset/Contents.json deleted file mode 100644 index 18f9533ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"flying-saucer-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-fill.imageset/Contents.json deleted file mode 100644 index 87a7dcc16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"flying-saucer-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-light.imageset/Contents.json deleted file mode 100644 index 474f89a3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"flying-saucer-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-thin.imageset/Contents.json deleted file mode 100644 index 541e28b61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"flying-saucer-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer.imageset/Contents.json deleted file mode 100644 index ed9293f77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"flying-saucer.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-bold.imageset/Contents.json deleted file mode 100644 index d0cfa3a66..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"folder-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-bold.imageset/Contents.json deleted file mode 100644 index 2314677b1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-dashed-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-duotone.imageset/Contents.json deleted file mode 100644 index 81dc96a95..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-dashed-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-fill.imageset/Contents.json deleted file mode 100644 index b89f75b44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-dashed-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-light.imageset/Contents.json deleted file mode 100644 index ee358aa92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-dashed-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-thin.imageset/Contents.json deleted file mode 100644 index 7841621f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-dashed-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed.imageset/Contents.json deleted file mode 100644 index e25402da1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-dashed.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-duotone.imageset/Contents.json deleted file mode 100644 index 251beea27..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"folder-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-fill.imageset/Contents.json deleted file mode 100644 index 52eaf5f12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-light.imageset/Contents.json deleted file mode 100644 index 62316a0de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-bold.imageset/Contents.json deleted file mode 100644 index 2d851d358..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-lock-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-duotone.imageset/Contents.json deleted file mode 100644 index 1ec21babe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-lock-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-fill.imageset/Contents.json deleted file mode 100644 index d18cb9afc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-lock-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-light.imageset/Contents.json deleted file mode 100644 index ef6262223..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"folder-lock-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-thin.imageset/Contents.json deleted file mode 100644 index b3e437ba2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-lock-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock.imageset/Contents.json deleted file mode 100644 index 42b4f04fd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-lock.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-bold.imageset/Contents.json deleted file mode 100644 index 315611e87..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-minus-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-duotone.imageset/Contents.json deleted file mode 100644 index 068057a5b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"folder-minus-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-fill.imageset/Contents.json deleted file mode 100644 index d99542e97..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-minus-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-light.imageset/Contents.json deleted file mode 100644 index f21ab1a5c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-minus-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-thin.imageset/Contents.json deleted file mode 100644 index e656dc084..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-minus-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus.imageset/Contents.json deleted file mode 100644 index e56775400..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-minus.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-bold.imageset/Contents.json deleted file mode 100644 index f61a0ccf1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"folder-notch-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-bold.imageset/folder-notch-bold.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-bold.imageset/folder-notch-bold.svg deleted file mode 100644 index 3abbdc919..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-bold.imageset/folder-notch-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-duotone.imageset/Contents.json deleted file mode 100644 index 2bd2df882..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-notch-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-duotone.imageset/folder-notch-duotone.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-duotone.imageset/folder-notch-duotone.svg deleted file mode 100644 index 7c8f25b72..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-duotone.imageset/folder-notch-duotone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-fill.imageset/Contents.json deleted file mode 100644 index fe0b23466..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"folder-notch-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-fill.imageset/folder-notch-fill.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-fill.imageset/folder-notch-fill.svg deleted file mode 100644 index 6a38c46e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-fill.imageset/folder-notch-fill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-light.imageset/Contents.json deleted file mode 100644 index aaf98bd02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-notch-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-light.imageset/folder-notch-light.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-light.imageset/folder-notch-light.svg deleted file mode 100644 index 19c59f665..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-light.imageset/folder-notch-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-bold.imageset/Contents.json deleted file mode 100644 index d64eba07d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"folder-notch-minus-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-bold.imageset/folder-notch-minus-bold.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-bold.imageset/folder-notch-minus-bold.svg deleted file mode 100644 index 462b4046c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-bold.imageset/folder-notch-minus-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-duotone.imageset/Contents.json deleted file mode 100644 index 03abc7863..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-notch-minus-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-duotone.imageset/folder-notch-minus-duotone.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-duotone.imageset/folder-notch-minus-duotone.svg deleted file mode 100644 index 16c5a8b85..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-duotone.imageset/folder-notch-minus-duotone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-fill.imageset/Contents.json deleted file mode 100644 index b4651ff7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"folder-notch-minus-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-fill.imageset/folder-notch-minus-fill.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-fill.imageset/folder-notch-minus-fill.svg deleted file mode 100644 index c2b6dbfcd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-fill.imageset/folder-notch-minus-fill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-light.imageset/Contents.json deleted file mode 100644 index ca6cbdc1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-notch-minus-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-light.imageset/folder-notch-minus-light.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-light.imageset/folder-notch-minus-light.svg deleted file mode 100644 index be26fb8c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-light.imageset/folder-notch-minus-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-thin.imageset/Contents.json deleted file mode 100644 index 0f5191195..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"folder-notch-minus-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-thin.imageset/folder-notch-minus-thin.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-thin.imageset/folder-notch-minus-thin.svg deleted file mode 100644 index 2c2677222..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus-thin.imageset/folder-notch-minus-thin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus.imageset/Contents.json deleted file mode 100644 index 47690586b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-notch-minus.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus.imageset/folder-notch-minus.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus.imageset/folder-notch-minus.svg deleted file mode 100644 index 01cf23bfb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-minus.imageset/folder-notch-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-bold.imageset/Contents.json deleted file mode 100644 index d36a371e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-notch-open-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-bold.imageset/folder-notch-open-bold.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-bold.imageset/folder-notch-open-bold.svg deleted file mode 100644 index f5b606ba4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-bold.imageset/folder-notch-open-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-duotone.imageset/Contents.json deleted file mode 100644 index a3a1c0d2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"folder-notch-open-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-duotone.imageset/folder-notch-open-duotone.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-duotone.imageset/folder-notch-open-duotone.svg deleted file mode 100644 index 9d7f39982..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-duotone.imageset/folder-notch-open-duotone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-fill.imageset/Contents.json deleted file mode 100644 index f9587b00f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-notch-open-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-fill.imageset/folder-notch-open-fill.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-fill.imageset/folder-notch-open-fill.svg deleted file mode 100644 index 9df91de26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-fill.imageset/folder-notch-open-fill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-light.imageset/Contents.json deleted file mode 100644 index a229db81e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-notch-open-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-light.imageset/folder-notch-open-light.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-light.imageset/folder-notch-open-light.svg deleted file mode 100644 index ed8be2d7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-light.imageset/folder-notch-open-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-thin.imageset/Contents.json deleted file mode 100644 index 9b116a682..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-notch-open-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-thin.imageset/folder-notch-open-thin.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-thin.imageset/folder-notch-open-thin.svg deleted file mode 100644 index 69c67c9ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open-thin.imageset/folder-notch-open-thin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open.imageset/Contents.json deleted file mode 100644 index 68c2fdb59..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-notch-open.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open.imageset/folder-notch-open.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open.imageset/folder-notch-open.svg deleted file mode 100644 index 9c19f27b1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-open.imageset/folder-notch-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-bold.imageset/Contents.json deleted file mode 100644 index 9ad1cad36..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"folder-notch-plus-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-bold.imageset/folder-notch-plus-bold.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-bold.imageset/folder-notch-plus-bold.svg deleted file mode 100644 index b841f8f56..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-bold.imageset/folder-notch-plus-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-duotone.imageset/Contents.json deleted file mode 100644 index 583f65efe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-notch-plus-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-duotone.imageset/folder-notch-plus-duotone.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-duotone.imageset/folder-notch-plus-duotone.svg deleted file mode 100644 index 2a3678b2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-duotone.imageset/folder-notch-plus-duotone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-fill.imageset/Contents.json deleted file mode 100644 index 71f3b7ea9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-notch-plus-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-fill.imageset/folder-notch-plus-fill.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-fill.imageset/folder-notch-plus-fill.svg deleted file mode 100644 index 6034af432..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-fill.imageset/folder-notch-plus-fill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-light.imageset/Contents.json deleted file mode 100644 index ce136d1dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-notch-plus-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-light.imageset/folder-notch-plus-light.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-light.imageset/folder-notch-plus-light.svg deleted file mode 100644 index a87a7fa89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-light.imageset/folder-notch-plus-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-thin.imageset/Contents.json deleted file mode 100644 index b55db0206..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-notch-plus-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-thin.imageset/folder-notch-plus-thin.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-thin.imageset/folder-notch-plus-thin.svg deleted file mode 100644 index bfaca0265..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus-thin.imageset/folder-notch-plus-thin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus.imageset/Contents.json deleted file mode 100644 index 7bd29f0aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-notch-plus.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus.imageset/folder-notch-plus.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus.imageset/folder-notch-plus.svg deleted file mode 100644 index f26d78df6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-plus.imageset/folder-notch-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-thin.imageset/Contents.json deleted file mode 100644 index 31180e985..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-notch-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-thin.imageset/folder-notch-thin.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-thin.imageset/folder-notch-thin.svg deleted file mode 100644 index b2dcec2d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch-thin.imageset/folder-notch-thin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch.imageset/Contents.json deleted file mode 100644 index ca336094b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"folder-notch.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch.imageset/folder-notch.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch.imageset/folder-notch.svg deleted file mode 100644 index 8140e6b57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-notch.imageset/folder-notch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-bold.imageset/Contents.json deleted file mode 100644 index 157edc6e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-open-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-duotone.imageset/Contents.json deleted file mode 100644 index 35ac76d50..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-open-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-fill.imageset/Contents.json deleted file mode 100644 index 0523ffd24..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-open-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-light.imageset/Contents.json deleted file mode 100644 index d16e4d2b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-open-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-thin.imageset/Contents.json deleted file mode 100644 index e0210acac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-open-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open.imageset/Contents.json deleted file mode 100644 index 7d0dcbadc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-open.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-bold.imageset/Contents.json deleted file mode 100644 index a6f4745eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-plus-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-duotone.imageset/Contents.json deleted file mode 100644 index 048384927..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-plus-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-fill.imageset/Contents.json deleted file mode 100644 index a6e2f43fa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-plus-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-light.imageset/Contents.json deleted file mode 100644 index 38e274f21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-plus-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-thin.imageset/Contents.json deleted file mode 100644 index 89dca572f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"folder-plus-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus.imageset/Contents.json deleted file mode 100644 index 6b652f75b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-plus.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-bold.imageset/Contents.json deleted file mode 100644 index b76f78e7e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-simple-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-bold.imageset/Contents.json deleted file mode 100644 index e5ac0e04b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"folder-simple-dashed-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-duotone.imageset/Contents.json deleted file mode 100644 index ddf564987..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-simple-dashed-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-fill.imageset/Contents.json deleted file mode 100644 index 8e422c4e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-simple-dashed-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-light.imageset/Contents.json deleted file mode 100644 index 0d3fe9196..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-simple-dashed-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-thin.imageset/Contents.json deleted file mode 100644 index 5b910bd60..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"folder-simple-dashed-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed.imageset/Contents.json deleted file mode 100644 index 1ce01b9ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"folder-simple-dashed.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-duotone.imageset/Contents.json deleted file mode 100644 index 2f62c61bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-simple-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-fill.imageset/Contents.json deleted file mode 100644 index 3289d3b2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-simple-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-light.imageset/Contents.json deleted file mode 100644 index de1497f99..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-simple-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-bold.imageset/Contents.json deleted file mode 100644 index b64a2a4ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"folder-simple-lock-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-duotone.imageset/Contents.json deleted file mode 100644 index d8c6fb3bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-simple-lock-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-fill.imageset/Contents.json deleted file mode 100644 index 7b588a7b1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"folder-simple-lock-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-light.imageset/Contents.json deleted file mode 100644 index 0cb3e7861..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-simple-lock-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-thin.imageset/Contents.json deleted file mode 100644 index 8b7558fe4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-simple-lock-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock.imageset/Contents.json deleted file mode 100644 index 623eb6a0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-simple-lock.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-bold.imageset/Contents.json deleted file mode 100644 index 4d28e73e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-simple-minus-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-duotone.imageset/Contents.json deleted file mode 100644 index 9eb396521..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-simple-minus-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-fill.imageset/Contents.json deleted file mode 100644 index e494387ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-simple-minus-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-light.imageset/Contents.json deleted file mode 100644 index 8098cf4cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"folder-simple-minus-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-thin.imageset/Contents.json deleted file mode 100644 index cbc98796d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-simple-minus-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus.imageset/Contents.json deleted file mode 100644 index 5197f246a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"folder-simple-minus.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-bold.imageset/Contents.json deleted file mode 100644 index 4b4398e9f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-simple-plus-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-duotone.imageset/Contents.json deleted file mode 100644 index 2a54d9e0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-simple-plus-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-fill.imageset/Contents.json deleted file mode 100644 index a57b6663e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-simple-plus-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-light.imageset/Contents.json deleted file mode 100644 index 97ee0ab9b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-simple-plus-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-thin.imageset/Contents.json deleted file mode 100644 index f4b903599..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"folder-simple-plus-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus.imageset/Contents.json deleted file mode 100644 index 57369e0f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"folder-simple-plus.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-bold.imageset/Contents.json deleted file mode 100644 index 055e706da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"folder-simple-star-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-duotone.imageset/Contents.json deleted file mode 100644 index 437e01e57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-simple-star-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-fill.imageset/Contents.json deleted file mode 100644 index 9a2c18bbc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-simple-star-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-light.imageset/Contents.json deleted file mode 100644 index a1ae366c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-simple-star-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-thin.imageset/Contents.json deleted file mode 100644 index 58073bcaf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"folder-simple-star-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star.imageset/Contents.json deleted file mode 100644 index f3d113b9e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-simple-star.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-thin.imageset/Contents.json deleted file mode 100644 index 0c9814c6f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-simple-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-bold.imageset/Contents.json deleted file mode 100644 index 00d7efed4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"folder-simple-user-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-duotone.imageset/Contents.json deleted file mode 100644 index 8604dc59f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-simple-user-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-fill.imageset/Contents.json deleted file mode 100644 index b46671d97..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-simple-user-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-light.imageset/Contents.json deleted file mode 100644 index 6b7d74fb8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"folder-simple-user-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-thin.imageset/Contents.json deleted file mode 100644 index 342e8ca10..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-simple-user-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user.imageset/Contents.json deleted file mode 100644 index ad46be6cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-simple-user.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple.imageset/Contents.json deleted file mode 100644 index 7ab129107..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-simple.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-bold.imageset/Contents.json deleted file mode 100644 index ed0fa7e75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-star-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-duotone.imageset/Contents.json deleted file mode 100644 index 08b1a0fba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"folder-star-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-fill.imageset/Contents.json deleted file mode 100644 index 5bcec8ce8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"folder-star-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-light.imageset/Contents.json deleted file mode 100644 index 036b1bc30..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-star-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-thin.imageset/Contents.json deleted file mode 100644 index 27036981f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"folder-star-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star.imageset/Contents.json deleted file mode 100644 index ddb6f55c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"folder-star.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-thin.imageset/Contents.json deleted file mode 100644 index dc93c4257..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"folder-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-bold.imageset/Contents.json deleted file mode 100644 index 5a7afd085..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-user-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-duotone.imageset/Contents.json deleted file mode 100644 index 5d0b83464..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-user-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-fill.imageset/Contents.json deleted file mode 100644 index 61ff50df3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder-user-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-light.imageset/Contents.json deleted file mode 100644 index d61397ce3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"folder-user-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-thin.imageset/Contents.json deleted file mode 100644 index c6e538558..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"folder-user-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user.imageset/Contents.json deleted file mode 100644 index d87aaa58a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folder-user.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder.imageset/Contents.json deleted file mode 100644 index d501c1287..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folder.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-bold.imageset/Contents.json deleted file mode 100644 index 5925bd393..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"folders-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-duotone.imageset/Contents.json deleted file mode 100644 index b400a07fd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"folders-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-fill.imageset/Contents.json deleted file mode 100644 index 0523712d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folders-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-light.imageset/Contents.json deleted file mode 100644 index 44c552d88..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folders-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-thin.imageset/Contents.json deleted file mode 100644 index f6d3c45de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"folders-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders.imageset/Contents.json deleted file mode 100644 index 462e13644..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"folders.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-bold.imageset/Contents.json deleted file mode 100644 index c461db361..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"football-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-duotone.imageset/Contents.json deleted file mode 100644 index 48d7ade65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"football-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-fill.imageset/Contents.json deleted file mode 100644 index 22b709d29..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"football-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-bold.imageset/Contents.json deleted file mode 100644 index dae6afc07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"football-helmet-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-duotone.imageset/Contents.json deleted file mode 100644 index b62dd956e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"football-helmet-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-fill.imageset/Contents.json deleted file mode 100644 index 12a9f9eb1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"football-helmet-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-light.imageset/Contents.json deleted file mode 100644 index 6a917d25a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"football-helmet-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-thin.imageset/Contents.json deleted file mode 100644 index b8451bc28..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"football-helmet-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet.imageset/Contents.json deleted file mode 100644 index 3e7e37912..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"football-helmet.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-light.imageset/Contents.json deleted file mode 100644 index ecd30f231..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"football-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-thin.imageset/Contents.json deleted file mode 100644 index 93ae1a7d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"football-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football.imageset/Contents.json deleted file mode 100644 index 8fc640e3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"football.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-bold.imageset/Contents.json deleted file mode 100644 index b982d1526..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"footprints-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-duotone.imageset/Contents.json deleted file mode 100644 index 0e0c315a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"footprints-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-fill.imageset/Contents.json deleted file mode 100644 index 7c907ece7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"footprints-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-light.imageset/Contents.json deleted file mode 100644 index f401b4f36..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"footprints-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-thin.imageset/Contents.json deleted file mode 100644 index e7c410667..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"footprints-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints.imageset/Contents.json deleted file mode 100644 index 792c9aa1b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"footprints.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-bold.imageset/Contents.json deleted file mode 100644 index d3d1512fe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"fork-knife-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-duotone.imageset/Contents.json deleted file mode 100644 index 18ca2e301..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"fork-knife-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-fill.imageset/Contents.json deleted file mode 100644 index 7a3200b4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fork-knife-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-light.imageset/Contents.json deleted file mode 100644 index 644eda3f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"fork-knife-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-thin.imageset/Contents.json deleted file mode 100644 index 291b10196..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"fork-knife-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife.imageset/Contents.json deleted file mode 100644 index 54db13d17..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"fork-knife.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-bold.imageset/Contents.json deleted file mode 100644 index 51c2e7ed9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"four-k-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-duotone.imageset/Contents.json deleted file mode 100644 index 7cf370d7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"four-k-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-fill.imageset/Contents.json deleted file mode 100644 index 6312fb951..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"four-k-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-light.imageset/Contents.json deleted file mode 100644 index 081809722..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"four-k-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-thin.imageset/Contents.json deleted file mode 100644 index 7c2252d9f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"four-k-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k.imageset/Contents.json deleted file mode 100644 index 5669f5730..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"four-k.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-bold.imageset/Contents.json deleted file mode 100644 index 2b2000cd0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"frame-corners-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-duotone.imageset/Contents.json deleted file mode 100644 index f2b135efc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"frame-corners-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-fill.imageset/Contents.json deleted file mode 100644 index d322bb87d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"frame-corners-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-light.imageset/Contents.json deleted file mode 100644 index 7cc467ee0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"frame-corners-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-thin.imageset/Contents.json deleted file mode 100644 index 4b5b210f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"frame-corners-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners.imageset/Contents.json deleted file mode 100644 index 07cd3e9b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"frame-corners.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-bold.imageset/Contents.json deleted file mode 100644 index 50cb9912e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"framer-logo-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-duotone.imageset/Contents.json deleted file mode 100644 index f13544e93..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"framer-logo-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-fill.imageset/Contents.json deleted file mode 100644 index c03bc3e67..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"framer-logo-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-light.imageset/Contents.json deleted file mode 100644 index 52b8c6d8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"framer-logo-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-thin.imageset/Contents.json deleted file mode 100644 index 5c1d366d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"framer-logo-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo.imageset/Contents.json deleted file mode 100644 index b922bc1e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"framer-logo.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-bold.imageset/Contents.json deleted file mode 100644 index cf7ecbfed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"function-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-duotone.imageset/Contents.json deleted file mode 100644 index 001639eca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"function-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-fill.imageset/Contents.json deleted file mode 100644 index 140123ee7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"function-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-light.imageset/Contents.json deleted file mode 100644 index 9af4188f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"function-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-thin.imageset/Contents.json deleted file mode 100644 index 266192a2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"function-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function.imageset/Contents.json deleted file mode 100644 index 95e892b43..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"function.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-bold.imageset/Contents.json deleted file mode 100644 index a0e6a4e14..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"funnel-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-duotone.imageset/Contents.json deleted file mode 100644 index 4f473af56..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"funnel-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-fill.imageset/Contents.json deleted file mode 100644 index b52852377..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"funnel-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-light.imageset/Contents.json deleted file mode 100644 index 5147f1702..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"funnel-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-bold.imageset/Contents.json deleted file mode 100644 index 50809e39b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"funnel-simple-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-duotone.imageset/Contents.json deleted file mode 100644 index 0688222a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"funnel-simple-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-fill.imageset/Contents.json deleted file mode 100644 index 3e0693693..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"funnel-simple-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-light.imageset/Contents.json deleted file mode 100644 index 2ea5203e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"funnel-simple-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-thin.imageset/Contents.json deleted file mode 100644 index 133033a48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"funnel-simple-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-bold.imageset/Contents.json deleted file mode 100644 index 8149bb63d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"funnel-simple-x-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-duotone.imageset/Contents.json deleted file mode 100644 index e0cc72aab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"funnel-simple-x-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-fill.imageset/Contents.json deleted file mode 100644 index 9d6bec166..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"funnel-simple-x-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-light.imageset/Contents.json deleted file mode 100644 index 678bdade0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"funnel-simple-x-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-thin.imageset/Contents.json deleted file mode 100644 index 39219d9ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"funnel-simple-x-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x.imageset/Contents.json deleted file mode 100644 index 8e108347a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"funnel-simple-x.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple.imageset/Contents.json deleted file mode 100644 index f78da356d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"funnel-simple.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-thin.imageset/Contents.json deleted file mode 100644 index 4c47e29d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"funnel-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-bold.imageset/Contents.json deleted file mode 100644 index e4953a85d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"funnel-x-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-duotone.imageset/Contents.json deleted file mode 100644 index 8860ad488..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"funnel-x-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-fill.imageset/Contents.json deleted file mode 100644 index 9377e9c40..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"funnel-x-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-light.imageset/Contents.json deleted file mode 100644 index d1bc54a5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"funnel-x-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-thin.imageset/Contents.json deleted file mode 100644 index 2d7e47b94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"funnel-x-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x.imageset/Contents.json deleted file mode 100644 index f325fac60..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"funnel-x.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel.imageset/Contents.json deleted file mode 100644 index 486e1b291..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"funnel.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-bold.imageset/Contents.json deleted file mode 100644 index 61ef5ec67..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"game-controller-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-duotone.imageset/Contents.json deleted file mode 100644 index 5f5226047..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"game-controller-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-fill.imageset/Contents.json deleted file mode 100644 index de053e3b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"game-controller-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-light.imageset/Contents.json deleted file mode 100644 index be5679b19..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"game-controller-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-thin.imageset/Contents.json deleted file mode 100644 index 473bfd093..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"game-controller-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller.imageset/Contents.json deleted file mode 100644 index 5a7073648..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"game-controller.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-bold.imageset/Contents.json deleted file mode 100644 index bcef9f61b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"garage-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-duotone.imageset/Contents.json deleted file mode 100644 index 82b1cd227..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"garage-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-fill.imageset/Contents.json deleted file mode 100644 index d68ace22f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"garage-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-light.imageset/Contents.json deleted file mode 100644 index 381905736..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"garage-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-thin.imageset/Contents.json deleted file mode 100644 index 1d41575ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"garage-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage.imageset/Contents.json deleted file mode 100644 index bedd25ad5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"garage.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-bold.imageset/Contents.json deleted file mode 100644 index 7d02ef9d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gas-can-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-duotone.imageset/Contents.json deleted file mode 100644 index 5d94a9ef4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"gas-can-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-fill.imageset/Contents.json deleted file mode 100644 index d21e2d593..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"gas-can-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-light.imageset/Contents.json deleted file mode 100644 index 5bb560323..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gas-can-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-thin.imageset/Contents.json deleted file mode 100644 index dbdd6f8ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gas-can-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can.imageset/Contents.json deleted file mode 100644 index f67659c7c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gas-can.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-bold.imageset/Contents.json deleted file mode 100644 index 059cded01..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gas-pump-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-duotone.imageset/Contents.json deleted file mode 100644 index 54591f4c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gas-pump-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-fill.imageset/Contents.json deleted file mode 100644 index 2c8a2bfca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gas-pump-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-light.imageset/Contents.json deleted file mode 100644 index f9cbc799a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gas-pump-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-thin.imageset/Contents.json deleted file mode 100644 index 134330edd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gas-pump-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump.imageset/Contents.json deleted file mode 100644 index d47b8cce8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"gas-pump.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-bold.imageset/Contents.json deleted file mode 100644 index cb830412b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gauge-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-duotone.imageset/Contents.json deleted file mode 100644 index 5ce5003b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gauge-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-fill.imageset/Contents.json deleted file mode 100644 index ac206afac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"gauge-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-light.imageset/Contents.json deleted file mode 100644 index 1ecb68b7e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gauge-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-thin.imageset/Contents.json deleted file mode 100644 index 2a53ac268..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gauge-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge.imageset/Contents.json deleted file mode 100644 index 87af45e57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gauge.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-bold.imageset/Contents.json deleted file mode 100644 index f1c0767de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gavel-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-duotone.imageset/Contents.json deleted file mode 100644 index 71d7bde7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"gavel-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-fill.imageset/Contents.json deleted file mode 100644 index 5288e3f05..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gavel-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-light.imageset/Contents.json deleted file mode 100644 index 5ea1e0b79..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"gavel-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-thin.imageset/Contents.json deleted file mode 100644 index a5d6b2a40..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gavel-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel.imageset/Contents.json deleted file mode 100644 index 9bfe405b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gavel.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-bold.imageset/Contents.json deleted file mode 100644 index c6479123d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gear-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-duotone.imageset/Contents.json deleted file mode 100644 index b296de76f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gear-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fill.imageset/Contents.json deleted file mode 100644 index 47feb2137..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"gear-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-bold.imageset/Contents.json deleted file mode 100644 index 35d671e7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gear-fine-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-duotone.imageset/Contents.json deleted file mode 100644 index 7e7d66480..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"gear-fine-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-fill.imageset/Contents.json deleted file mode 100644 index cb2d73269..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gear-fine-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-light.imageset/Contents.json deleted file mode 100644 index 2e43c8405..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gear-fine-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-thin.imageset/Contents.json deleted file mode 100644 index 9597065eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gear-fine-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine.imageset/Contents.json deleted file mode 100644 index 0ad1bc991..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gear-fine.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-light.imageset/Contents.json deleted file mode 100644 index 5363525b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gear-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-bold.imageset/Contents.json deleted file mode 100644 index 4cc44e9fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gear-six-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-duotone.imageset/Contents.json deleted file mode 100644 index af2f286ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gear-six-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-fill.imageset/Contents.json deleted file mode 100644 index af19d6df0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gear-six-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-light.imageset/Contents.json deleted file mode 100644 index d811c1189..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gear-six-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-thin.imageset/Contents.json deleted file mode 100644 index 6c0f9fa6f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"gear-six-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six.imageset/Contents.json deleted file mode 100644 index f236531b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gear-six.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-thin.imageset/Contents.json deleted file mode 100644 index b2b16b904..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gear-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear.imageset/Contents.json deleted file mode 100644 index 75c8b6c58..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gear.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-bold.imageset/Contents.json deleted file mode 100644 index 776367c78..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"gender-female-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-duotone.imageset/Contents.json deleted file mode 100644 index b37651327..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"gender-female-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-fill.imageset/Contents.json deleted file mode 100644 index 21775c0de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gender-female-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-light.imageset/Contents.json deleted file mode 100644 index 3804b5529..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"gender-female-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-thin.imageset/Contents.json deleted file mode 100644 index ed493be99..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gender-female-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female.imageset/Contents.json deleted file mode 100644 index e4bbb0432..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gender-female.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-bold.imageset/Contents.json deleted file mode 100644 index 939501864..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"gender-intersex-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-duotone.imageset/Contents.json deleted file mode 100644 index 577d3b164..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"gender-intersex-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-fill.imageset/Contents.json deleted file mode 100644 index fc3b06324..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gender-intersex-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-light.imageset/Contents.json deleted file mode 100644 index f52e8de58..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gender-intersex-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-thin.imageset/Contents.json deleted file mode 100644 index 17dfe5dc4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"gender-intersex-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex.imageset/Contents.json deleted file mode 100644 index cfa460e85..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"gender-intersex.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-bold.imageset/Contents.json deleted file mode 100644 index e15244839..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"gender-male-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-duotone.imageset/Contents.json deleted file mode 100644 index 010a561ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"gender-male-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-fill.imageset/Contents.json deleted file mode 100644 index d04e967f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"gender-male-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-light.imageset/Contents.json deleted file mode 100644 index c7ac959cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gender-male-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-thin.imageset/Contents.json deleted file mode 100644 index dda7b357f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gender-male-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male.imageset/Contents.json deleted file mode 100644 index 270396e70..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gender-male.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-bold.imageset/Contents.json deleted file mode 100644 index f669d2d86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gender-neuter-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-duotone.imageset/Contents.json deleted file mode 100644 index 8a7cb2bef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gender-neuter-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-fill.imageset/Contents.json deleted file mode 100644 index f263ef59a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gender-neuter-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-light.imageset/Contents.json deleted file mode 100644 index 8c105d5b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gender-neuter-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-thin.imageset/Contents.json deleted file mode 100644 index 85547ca50..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"gender-neuter-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter.imageset/Contents.json deleted file mode 100644 index 2aef00940..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gender-neuter.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-bold.imageset/Contents.json deleted file mode 100644 index 45f797ad9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gender-nonbinary-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-duotone.imageset/Contents.json deleted file mode 100644 index f07579a8b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gender-nonbinary-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-fill.imageset/Contents.json deleted file mode 100644 index 46ed793d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"gender-nonbinary-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-light.imageset/Contents.json deleted file mode 100644 index bf7455d6d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gender-nonbinary-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-thin.imageset/Contents.json deleted file mode 100644 index 443a0dff8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gender-nonbinary-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary.imageset/Contents.json deleted file mode 100644 index 4b4986902..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gender-nonbinary.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-bold.imageset/Contents.json deleted file mode 100644 index d0254d5fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gender-transgender-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-duotone.imageset/Contents.json deleted file mode 100644 index 42d512d5a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gender-transgender-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-fill.imageset/Contents.json deleted file mode 100644 index adce44d05..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gender-transgender-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-light.imageset/Contents.json deleted file mode 100644 index 5b453c485..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"gender-transgender-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-thin.imageset/Contents.json deleted file mode 100644 index 1d12b490e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"gender-transgender-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender.imageset/Contents.json deleted file mode 100644 index a723a7b49..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gender-transgender.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-bold.imageset/Contents.json deleted file mode 100644 index 3e2337f4a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"ghost-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-duotone.imageset/Contents.json deleted file mode 100644 index dd8bc8272..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"ghost-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-fill.imageset/Contents.json deleted file mode 100644 index dd7c9acca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"ghost-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-light.imageset/Contents.json deleted file mode 100644 index 0913d1808..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ghost-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-thin.imageset/Contents.json deleted file mode 100644 index d56f1080f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"ghost-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost.imageset/Contents.json deleted file mode 100644 index 468acfa07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ghost.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-bold.imageset/Contents.json deleted file mode 100644 index 4752ffa75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"gif-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-duotone.imageset/Contents.json deleted file mode 100644 index ee6fc30df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gif-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-fill.imageset/Contents.json deleted file mode 100644 index 22f8e4877..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"gif-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-light.imageset/Contents.json deleted file mode 100644 index 37f55bca8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"gif-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-thin.imageset/Contents.json deleted file mode 100644 index 2a101ff41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"gif-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif.imageset/Contents.json deleted file mode 100644 index 38dc10bdf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gif.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-bold.imageset/Contents.json deleted file mode 100644 index 5b3044581..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gift-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-duotone.imageset/Contents.json deleted file mode 100644 index 32d388af4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gift-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-fill.imageset/Contents.json deleted file mode 100644 index 66a253f08..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gift-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-light.imageset/Contents.json deleted file mode 100644 index b1c72d0a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gift-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-thin.imageset/Contents.json deleted file mode 100644 index a0da6ec0f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gift-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift.imageset/Contents.json deleted file mode 100644 index 31de4506c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gift.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-bold.imageset/Contents.json deleted file mode 100644 index 23e815298..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"git-branch-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-duotone.imageset/Contents.json deleted file mode 100644 index d5326e7a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"git-branch-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-fill.imageset/Contents.json deleted file mode 100644 index 4e75af035..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"git-branch-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-light.imageset/Contents.json deleted file mode 100644 index 805bd2583..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"git-branch-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-thin.imageset/Contents.json deleted file mode 100644 index b66149cb4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"git-branch-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch.imageset/Contents.json deleted file mode 100644 index 445550a28..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"git-branch.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-bold.imageset/Contents.json deleted file mode 100644 index 9356a5464..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"git-commit-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-duotone.imageset/Contents.json deleted file mode 100644 index 13fc2298b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"git-commit-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-fill.imageset/Contents.json deleted file mode 100644 index 1b355177f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"git-commit-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-light.imageset/Contents.json deleted file mode 100644 index a6b600289..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"git-commit-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-thin.imageset/Contents.json deleted file mode 100644 index 4e71eaa20..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"git-commit-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit.imageset/Contents.json deleted file mode 100644 index 54a11ff01..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"git-commit.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-bold.imageset/Contents.json deleted file mode 100644 index a0db7e414..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"git-diff-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-duotone.imageset/Contents.json deleted file mode 100644 index 0643becfa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"git-diff-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-fill.imageset/Contents.json deleted file mode 100644 index d1595c54e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"git-diff-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-light.imageset/Contents.json deleted file mode 100644 index fa25601b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"git-diff-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-thin.imageset/Contents.json deleted file mode 100644 index de5fc938d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"git-diff-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff.imageset/Contents.json deleted file mode 100644 index 054580f76..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"git-diff.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-bold.imageset/Contents.json deleted file mode 100644 index 9d51ea5ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"git-fork-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-duotone.imageset/Contents.json deleted file mode 100644 index 424e4761c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"git-fork-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-fill.imageset/Contents.json deleted file mode 100644 index 1c447a467..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"git-fork-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-light.imageset/Contents.json deleted file mode 100644 index f9a29910c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"git-fork-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-thin.imageset/Contents.json deleted file mode 100644 index ea5126075..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"git-fork-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork.imageset/Contents.json deleted file mode 100644 index 641706c02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"git-fork.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-bold.imageset/Contents.json deleted file mode 100644 index e7dbb4dfc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"git-merge-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-duotone.imageset/Contents.json deleted file mode 100644 index b8fbddd3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"git-merge-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-fill.imageset/Contents.json deleted file mode 100644 index 1a6a8d4d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"git-merge-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-light.imageset/Contents.json deleted file mode 100644 index f6c78b43b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"git-merge-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-thin.imageset/Contents.json deleted file mode 100644 index e153dd08d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"git-merge-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge.imageset/Contents.json deleted file mode 100644 index 350ca5287..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"git-merge.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-bold.imageset/Contents.json deleted file mode 100644 index e5d78dca8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"git-pull-request-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-duotone.imageset/Contents.json deleted file mode 100644 index 2b1f188f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"git-pull-request-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-fill.imageset/Contents.json deleted file mode 100644 index 346963e74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"git-pull-request-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-light.imageset/Contents.json deleted file mode 100644 index bc6107672..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"git-pull-request-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-thin.imageset/Contents.json deleted file mode 100644 index 2d5dec937..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"git-pull-request-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request.imageset/Contents.json deleted file mode 100644 index 95e8d753d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"git-pull-request.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-bold.imageset/Contents.json deleted file mode 100644 index 5a985f40c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"github-logo-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-duotone.imageset/Contents.json deleted file mode 100644 index 85b9ff008..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"github-logo-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-fill.imageset/Contents.json deleted file mode 100644 index 9bd65b3d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"github-logo-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-light.imageset/Contents.json deleted file mode 100644 index b171621f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"github-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-thin.imageset/Contents.json deleted file mode 100644 index 106bcdbc3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"github-logo-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo.imageset/Contents.json deleted file mode 100644 index e37ed0928..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"github-logo.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-bold.imageset/Contents.json deleted file mode 100644 index dacb3af87..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gitlab-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-duotone.imageset/Contents.json deleted file mode 100644 index bc906a754..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gitlab-logo-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-fill.imageset/Contents.json deleted file mode 100644 index abafd6927..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gitlab-logo-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-light.imageset/Contents.json deleted file mode 100644 index 15d8f2f92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gitlab-logo-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-bold.imageset/Contents.json deleted file mode 100644 index 94211d832..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gitlab-logo-simple-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-duotone.imageset/Contents.json deleted file mode 100644 index 873af55f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gitlab-logo-simple-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-fill.imageset/Contents.json deleted file mode 100644 index 04da7b4ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gitlab-logo-simple-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-light.imageset/Contents.json deleted file mode 100644 index f53b2e68b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gitlab-logo-simple-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-thin.imageset/Contents.json deleted file mode 100644 index af75af3e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gitlab-logo-simple-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple.imageset/Contents.json deleted file mode 100644 index d712c2370..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gitlab-logo-simple.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-thin.imageset/Contents.json deleted file mode 100644 index bb0c50748..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"gitlab-logo-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo.imageset/Contents.json deleted file mode 100644 index 8fd0cafe8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gitlab-logo.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-bold.imageset/Contents.json deleted file mode 100644 index 0ea5e7a98..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"globe-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-duotone.imageset/Contents.json deleted file mode 100644 index c26c96e87..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"globe-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-fill.imageset/Contents.json deleted file mode 100644 index 1924a7450..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"globe-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-bold.imageset/Contents.json deleted file mode 100644 index 89aa70f89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"globe-hemisphere-east-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-duotone.imageset/Contents.json deleted file mode 100644 index 76b98e0fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"globe-hemisphere-east-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-fill.imageset/Contents.json deleted file mode 100644 index 48789f33a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"globe-hemisphere-east-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-light.imageset/Contents.json deleted file mode 100644 index 42d51b3f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"globe-hemisphere-east-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-thin.imageset/Contents.json deleted file mode 100644 index 7f47a3e06..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"globe-hemisphere-east-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east.imageset/Contents.json deleted file mode 100644 index 5c5da3a8b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"globe-hemisphere-east.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-bold.imageset/Contents.json deleted file mode 100644 index dd6c01a42..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"globe-hemisphere-west-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-duotone.imageset/Contents.json deleted file mode 100644 index 10a2c3906..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"globe-hemisphere-west-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-fill.imageset/Contents.json deleted file mode 100644 index c440dfb6e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"globe-hemisphere-west-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-light.imageset/Contents.json deleted file mode 100644 index a09365d70..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"globe-hemisphere-west-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-thin.imageset/Contents.json deleted file mode 100644 index 0b9a7ab74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"globe-hemisphere-west-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west.imageset/Contents.json deleted file mode 100644 index 81f80eca7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"globe-hemisphere-west.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-light.imageset/Contents.json deleted file mode 100644 index 570539cc4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"globe-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-bold.imageset/Contents.json deleted file mode 100644 index 97f1bc265..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"globe-simple-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-duotone.imageset/Contents.json deleted file mode 100644 index 2083aef7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"globe-simple-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-fill.imageset/Contents.json deleted file mode 100644 index 03e73caaf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"globe-simple-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-light.imageset/Contents.json deleted file mode 100644 index 2086471d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"globe-simple-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-thin.imageset/Contents.json deleted file mode 100644 index 5ac7503b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"globe-simple-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-bold.imageset/Contents.json deleted file mode 100644 index f9eb946a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"globe-simple-x-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-duotone.imageset/Contents.json deleted file mode 100644 index 000c87212..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"globe-simple-x-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-fill.imageset/Contents.json deleted file mode 100644 index 56f05018e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"globe-simple-x-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-light.imageset/Contents.json deleted file mode 100644 index a2e305f19..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"globe-simple-x-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-thin.imageset/Contents.json deleted file mode 100644 index f15e13c5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"globe-simple-x-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x.imageset/Contents.json deleted file mode 100644 index 9da26dc81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"globe-simple-x.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple.imageset/Contents.json deleted file mode 100644 index 0249e3253..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"globe-simple.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-bold.imageset/Contents.json deleted file mode 100644 index 27ca017e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"globe-stand-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-duotone.imageset/Contents.json deleted file mode 100644 index 698a6fa1e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"globe-stand-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-fill.imageset/Contents.json deleted file mode 100644 index 9534a5067..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"globe-stand-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-light.imageset/Contents.json deleted file mode 100644 index e2b28954b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"globe-stand-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-thin.imageset/Contents.json deleted file mode 100644 index 08cf0d415..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"globe-stand-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand.imageset/Contents.json deleted file mode 100644 index 33042a5ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"globe-stand.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-thin.imageset/Contents.json deleted file mode 100644 index cf4f4cdd2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"globe-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-bold.imageset/Contents.json deleted file mode 100644 index 5061e3353..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"globe-x-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-duotone.imageset/Contents.json deleted file mode 100644 index 06a115ce2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"globe-x-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-fill.imageset/Contents.json deleted file mode 100644 index 33203ff21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"globe-x-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-light.imageset/Contents.json deleted file mode 100644 index 0eb58e620..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"globe-x-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-thin.imageset/Contents.json deleted file mode 100644 index 92d3b7781..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"globe-x-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x.imageset/Contents.json deleted file mode 100644 index 348053bf0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"globe-x.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe.imageset/Contents.json deleted file mode 100644 index afba8e2b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"globe.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-bold.imageset/Contents.json deleted file mode 100644 index ecdf4c364..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"goggles-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-duotone.imageset/Contents.json deleted file mode 100644 index 209693249..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"goggles-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-fill.imageset/Contents.json deleted file mode 100644 index d515ea48d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"goggles-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-light.imageset/Contents.json deleted file mode 100644 index 26671f779..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"goggles-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-thin.imageset/Contents.json deleted file mode 100644 index be07f7454..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"goggles-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles.imageset/Contents.json deleted file mode 100644 index 2e5b8b885..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"goggles.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-bold.imageset/Contents.json deleted file mode 100644 index c9d9df24c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"golf-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-duotone.imageset/Contents.json deleted file mode 100644 index c0743c536..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"golf-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-fill.imageset/Contents.json deleted file mode 100644 index 25c35cbc5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"golf-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-light.imageset/Contents.json deleted file mode 100644 index a4458ad61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"golf-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-thin.imageset/Contents.json deleted file mode 100644 index 650c48372..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"golf-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf.imageset/Contents.json deleted file mode 100644 index f11c22593..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"golf.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-bold.imageset/Contents.json deleted file mode 100644 index 83565275f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"goodreads-logo-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-duotone.imageset/Contents.json deleted file mode 100644 index 3331ca09f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"goodreads-logo-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-fill.imageset/Contents.json deleted file mode 100644 index 21f4cb2ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"goodreads-logo-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-light.imageset/Contents.json deleted file mode 100644 index b404d305f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"goodreads-logo-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-thin.imageset/Contents.json deleted file mode 100644 index ce7d61b6a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"goodreads-logo-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo.imageset/Contents.json deleted file mode 100644 index a5fc529b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"goodreads-logo.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-bold.imageset/Contents.json deleted file mode 100644 index 59b219da7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"google-cardboard-logo-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-duotone.imageset/Contents.json deleted file mode 100644 index 964c14956..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"google-cardboard-logo-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-fill.imageset/Contents.json deleted file mode 100644 index d24e84445..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"google-cardboard-logo-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-light.imageset/Contents.json deleted file mode 100644 index cf1272844..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"google-cardboard-logo-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-thin.imageset/Contents.json deleted file mode 100644 index 07e569cd1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"google-cardboard-logo-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo.imageset/Contents.json deleted file mode 100644 index 6997b74f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"google-cardboard-logo.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-bold.imageset/Contents.json deleted file mode 100644 index 20bcec9ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"google-chrome-logo-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-duotone.imageset/Contents.json deleted file mode 100644 index 26bd4eacb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"google-chrome-logo-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-fill.imageset/Contents.json deleted file mode 100644 index d2d6d7f5b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"google-chrome-logo-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-light.imageset/Contents.json deleted file mode 100644 index e6385ad7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"google-chrome-logo-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-thin.imageset/Contents.json deleted file mode 100644 index 29a29b422..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"google-chrome-logo-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo.imageset/Contents.json deleted file mode 100644 index b06282136..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"google-chrome-logo.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-bold.imageset/Contents.json deleted file mode 100644 index f90b3defe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"google-drive-logo-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-duotone.imageset/Contents.json deleted file mode 100644 index 5505b3a7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"google-drive-logo-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-fill.imageset/Contents.json deleted file mode 100644 index 4b8a173af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"google-drive-logo-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-light.imageset/Contents.json deleted file mode 100644 index 9422926a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"google-drive-logo-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-thin.imageset/Contents.json deleted file mode 100644 index 03b6682ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"google-drive-logo-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo.imageset/Contents.json deleted file mode 100644 index 8c372ee45..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"google-drive-logo.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-bold.imageset/Contents.json deleted file mode 100644 index efc01484e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"google-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-duotone.imageset/Contents.json deleted file mode 100644 index 204f3cbc7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"google-logo-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-fill.imageset/Contents.json deleted file mode 100644 index 3a2f73b0c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"google-logo-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-light.imageset/Contents.json deleted file mode 100644 index 732a5b176..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"google-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-thin.imageset/Contents.json deleted file mode 100644 index e94953901..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"google-logo-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo.imageset/Contents.json deleted file mode 100644 index 5f94c614b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"google-logo.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-bold.imageset/Contents.json deleted file mode 100644 index 0894356f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"google-photos-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-duotone.imageset/Contents.json deleted file mode 100644 index 122823036..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"google-photos-logo-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-fill.imageset/Contents.json deleted file mode 100644 index 5256e6151..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"google-photos-logo-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-light.imageset/Contents.json deleted file mode 100644 index fe52dfb86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"google-photos-logo-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-thin.imageset/Contents.json deleted file mode 100644 index 764660d0e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"google-photos-logo-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo.imageset/Contents.json deleted file mode 100644 index 828c73fc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"google-photos-logo.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-bold.imageset/Contents.json deleted file mode 100644 index 27a573bf6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"google-play-logo-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-duotone.imageset/Contents.json deleted file mode 100644 index 97d312565..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"google-play-logo-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-fill.imageset/Contents.json deleted file mode 100644 index c6d134774..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"google-play-logo-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-light.imageset/Contents.json deleted file mode 100644 index c39ebd91a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"google-play-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-thin.imageset/Contents.json deleted file mode 100644 index d161517bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"google-play-logo-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo.imageset/Contents.json deleted file mode 100644 index 93e3502ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"google-play-logo.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-bold.imageset/Contents.json deleted file mode 100644 index 12a25b3a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"google-podcasts-logo-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-duotone.imageset/Contents.json deleted file mode 100644 index 93cf19192..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"google-podcasts-logo-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-fill.imageset/Contents.json deleted file mode 100644 index 62d6d21dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"google-podcasts-logo-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-light.imageset/Contents.json deleted file mode 100644 index 4b13de35d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"google-podcasts-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-thin.imageset/Contents.json deleted file mode 100644 index d9acbd599..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"google-podcasts-logo-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo.imageset/Contents.json deleted file mode 100644 index 8ae4c4d53..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"google-podcasts-logo.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-bold.imageset/Contents.json deleted file mode 100644 index 2200c7d1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gps-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-duotone.imageset/Contents.json deleted file mode 100644 index a63ac8db4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gps-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fill.imageset/Contents.json deleted file mode 100644 index 27da5dd33..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"gps-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-bold.imageset/Contents.json deleted file mode 100644 index 282a2d86a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gps-fix-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-duotone.imageset/Contents.json deleted file mode 100644 index 1317a3e75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"gps-fix-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-fill.imageset/Contents.json deleted file mode 100644 index df89fe0ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gps-fix-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-light.imageset/Contents.json deleted file mode 100644 index 7871e03c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"gps-fix-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-thin.imageset/Contents.json deleted file mode 100644 index 1312c35a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gps-fix-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix.imageset/Contents.json deleted file mode 100644 index 39665b2b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gps-fix.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-light.imageset/Contents.json deleted file mode 100644 index d1d14f4a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"gps-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-bold.imageset/Contents.json deleted file mode 100644 index f2841e634..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gps-slash-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-duotone.imageset/Contents.json deleted file mode 100644 index c6cb551a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"gps-slash-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-fill.imageset/Contents.json deleted file mode 100644 index 5d764267d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"gps-slash-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-light.imageset/Contents.json deleted file mode 100644 index 2b6e2c887..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gps-slash-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-thin.imageset/Contents.json deleted file mode 100644 index 28a65054b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gps-slash-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash.imageset/Contents.json deleted file mode 100644 index 9eeacba02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gps-slash.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-thin.imageset/Contents.json deleted file mode 100644 index d5d1b3ef0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"gps-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps.imageset/Contents.json deleted file mode 100644 index 27932d5b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gps.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-bold.imageset/Contents.json deleted file mode 100644 index 45468e3a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"gradient-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-duotone.imageset/Contents.json deleted file mode 100644 index 8cc6f0e52..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"gradient-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-fill.imageset/Contents.json deleted file mode 100644 index 6fb3b1d3f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gradient-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-light.imageset/Contents.json deleted file mode 100644 index dc012b3bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"gradient-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-thin.imageset/Contents.json deleted file mode 100644 index e26ff1e03..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gradient-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient.imageset/Contents.json deleted file mode 100644 index 2771c9cad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"gradient.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-bold.imageset/Contents.json deleted file mode 100644 index 2d8a859ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"graduation-cap-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-duotone.imageset/Contents.json deleted file mode 100644 index 5fba1f293..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"graduation-cap-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-fill.imageset/Contents.json deleted file mode 100644 index ee919bdcb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"graduation-cap-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-light.imageset/Contents.json deleted file mode 100644 index b33fdda33..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"graduation-cap-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-thin.imageset/Contents.json deleted file mode 100644 index 7a3374933..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"graduation-cap-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap.imageset/Contents.json deleted file mode 100644 index 4db96eefa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"graduation-cap.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-bold.imageset/Contents.json deleted file mode 100644 index aa4ed6555..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"grains-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-duotone.imageset/Contents.json deleted file mode 100644 index 5cd6b3a31..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"grains-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-fill.imageset/Contents.json deleted file mode 100644 index e3d468dd6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"grains-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-light.imageset/Contents.json deleted file mode 100644 index 64704da2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"grains-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-bold.imageset/Contents.json deleted file mode 100644 index 28af9607e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"grains-slash-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-duotone.imageset/Contents.json deleted file mode 100644 index 1c79a1ccc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"grains-slash-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-fill.imageset/Contents.json deleted file mode 100644 index 2f8cc078d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"grains-slash-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-light.imageset/Contents.json deleted file mode 100644 index 8c9413d0f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"grains-slash-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-thin.imageset/Contents.json deleted file mode 100644 index 7e14dacbe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"grains-slash-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash.imageset/Contents.json deleted file mode 100644 index ae9aa777f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"grains-slash.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-thin.imageset/Contents.json deleted file mode 100644 index 1fdfd793b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"grains-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains.imageset/Contents.json deleted file mode 100644 index 0a3956e78..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"grains.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-bold.imageset/Contents.json deleted file mode 100644 index d4219d349..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"graph-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-duotone.imageset/Contents.json deleted file mode 100644 index 1cf2984b1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"graph-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-fill.imageset/Contents.json deleted file mode 100644 index ca0dbbbe1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"graph-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-light.imageset/Contents.json deleted file mode 100644 index 715f11ae0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"graph-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-thin.imageset/Contents.json deleted file mode 100644 index 72131ad73..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"graph-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph.imageset/Contents.json deleted file mode 100644 index 82b50209a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"graph.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-bold.imageset/Contents.json deleted file mode 100644 index ca41974de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"graphics-card-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-duotone.imageset/Contents.json deleted file mode 100644 index 8a4ae05ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"graphics-card-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-fill.imageset/Contents.json deleted file mode 100644 index 9f4ef8d55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"graphics-card-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-light.imageset/Contents.json deleted file mode 100644 index 1b5c219ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"graphics-card-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-thin.imageset/Contents.json deleted file mode 100644 index 9421b39ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"graphics-card-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card.imageset/Contents.json deleted file mode 100644 index 96379eb75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"graphics-card.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-bold.imageset/Contents.json deleted file mode 100644 index 8e4d2a0bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"greater-than-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-duotone.imageset/Contents.json deleted file mode 100644 index 0aae5ed7a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"greater-than-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-fill.imageset/Contents.json deleted file mode 100644 index 702fba755..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"greater-than-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-light.imageset/Contents.json deleted file mode 100644 index 2fe414558..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"greater-than-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-bold.imageset/Contents.json deleted file mode 100644 index e86931758..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"greater-than-or-equal-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-duotone.imageset/Contents.json deleted file mode 100644 index 29f84efdd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"greater-than-or-equal-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-fill.imageset/Contents.json deleted file mode 100644 index 9a8276b7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"greater-than-or-equal-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-light.imageset/Contents.json deleted file mode 100644 index c36ae61e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"greater-than-or-equal-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-thin.imageset/Contents.json deleted file mode 100644 index 740df37a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"greater-than-or-equal-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal.imageset/Contents.json deleted file mode 100644 index 8d27a9692..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"greater-than-or-equal.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-thin.imageset/Contents.json deleted file mode 100644 index aed418600..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"greater-than-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than.imageset/Contents.json deleted file mode 100644 index 0019595b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"greater-than.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-bold.imageset/Contents.json deleted file mode 100644 index 66e80c49b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"grid-four-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-duotone.imageset/Contents.json deleted file mode 100644 index cc7a8173f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"grid-four-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-fill.imageset/Contents.json deleted file mode 100644 index 8d8c82e84..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"grid-four-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-light.imageset/Contents.json deleted file mode 100644 index 55adc8a26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"grid-four-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-thin.imageset/Contents.json deleted file mode 100644 index 702c6ec16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"grid-four-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four.imageset/Contents.json deleted file mode 100644 index 5ea5fb025..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"grid-four.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-bold.imageset/Contents.json deleted file mode 100644 index 7e10dd256..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"grid-nine-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-duotone.imageset/Contents.json deleted file mode 100644 index 80aee2a8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"grid-nine-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-fill.imageset/Contents.json deleted file mode 100644 index 4bf1fc88a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"grid-nine-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-light.imageset/Contents.json deleted file mode 100644 index 20389bb46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"grid-nine-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-thin.imageset/Contents.json deleted file mode 100644 index f6b1374f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"grid-nine-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine.imageset/Contents.json deleted file mode 100644 index ca34271a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"grid-nine.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-bold.imageset/Contents.json deleted file mode 100644 index 84eb04fbf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"guitar-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-duotone.imageset/Contents.json deleted file mode 100644 index b679dcb1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"guitar-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-fill.imageset/Contents.json deleted file mode 100644 index 94f0de35f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"guitar-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-light.imageset/Contents.json deleted file mode 100644 index 0a7caaa5e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"guitar-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-thin.imageset/Contents.json deleted file mode 100644 index 609ad4546..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"guitar-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar.imageset/Contents.json deleted file mode 100644 index 2d509e5f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"guitar.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-bold.imageset/Contents.json deleted file mode 100644 index 592fc1461..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hair-dryer-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-duotone.imageset/Contents.json deleted file mode 100644 index f76d6a89b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"hair-dryer-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-fill.imageset/Contents.json deleted file mode 100644 index e4b5e23a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hair-dryer-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-light.imageset/Contents.json deleted file mode 100644 index 4d27bf784..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hair-dryer-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-thin.imageset/Contents.json deleted file mode 100644 index c12e84bed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hair-dryer-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer.imageset/Contents.json deleted file mode 100644 index 11c2f75c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hair-dryer.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-bold.imageset/Contents.json deleted file mode 100644 index 5996842aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"hamburger-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-duotone.imageset/Contents.json deleted file mode 100644 index 08fda5d6d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"hamburger-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-fill.imageset/Contents.json deleted file mode 100644 index 082352835..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hamburger-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-light.imageset/Contents.json deleted file mode 100644 index e108e2933..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hamburger-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-thin.imageset/Contents.json deleted file mode 100644 index 6648be838..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hamburger-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger.imageset/Contents.json deleted file mode 100644 index 5e7913d1e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"hamburger.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-bold.imageset/Contents.json deleted file mode 100644 index 01b483223..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hammer-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-duotone.imageset/Contents.json deleted file mode 100644 index 0ad77fe76..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hammer-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-fill.imageset/Contents.json deleted file mode 100644 index 6a0a3947b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hammer-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-light.imageset/Contents.json deleted file mode 100644 index c69410087..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hammer-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-thin.imageset/Contents.json deleted file mode 100644 index 01074f5fd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hammer-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer.imageset/Contents.json deleted file mode 100644 index 0209427df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hammer.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-bold.imageset/Contents.json deleted file mode 100644 index f4001c5f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"hand-arrow-down-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-duotone.imageset/Contents.json deleted file mode 100644 index f1d714510..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-arrow-down-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-fill.imageset/Contents.json deleted file mode 100644 index 1d3475ab1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-arrow-down-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-light.imageset/Contents.json deleted file mode 100644 index 4f13989d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-arrow-down-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-thin.imageset/Contents.json deleted file mode 100644 index dada5a91b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-arrow-down-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down.imageset/Contents.json deleted file mode 100644 index bd36a6ca8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"hand-arrow-down.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-bold.imageset/Contents.json deleted file mode 100644 index a6ff78fc4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"hand-arrow-up-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-duotone.imageset/Contents.json deleted file mode 100644 index 3f20dbefe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-arrow-up-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-fill.imageset/Contents.json deleted file mode 100644 index bf60a981d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"hand-arrow-up-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-light.imageset/Contents.json deleted file mode 100644 index 484f77b71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-arrow-up-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-thin.imageset/Contents.json deleted file mode 100644 index 298bec23b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-arrow-up-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up.imageset/Contents.json deleted file mode 100644 index ba10e60d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-arrow-up.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-bold.imageset/Contents.json deleted file mode 100644 index e854cf54c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-bold.imageset/Contents.json deleted file mode 100644 index 2f5338856..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-coins-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-duotone.imageset/Contents.json deleted file mode 100644 index 0318c86cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-coins-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-fill.imageset/Contents.json deleted file mode 100644 index ba12964c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-coins-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-light.imageset/Contents.json deleted file mode 100644 index aa8be4216..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-coins-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-thin.imageset/Contents.json deleted file mode 100644 index 826b58128..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"hand-coins-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins.imageset/Contents.json deleted file mode 100644 index 8c733273a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-coins.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-bold.imageset/Contents.json deleted file mode 100644 index 8e544e55a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-deposit-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-duotone.imageset/Contents.json deleted file mode 100644 index 7e301d49a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"hand-deposit-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-fill.imageset/Contents.json deleted file mode 100644 index 6c2227631..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"hand-deposit-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-light.imageset/Contents.json deleted file mode 100644 index d9235d5ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-deposit-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-thin.imageset/Contents.json deleted file mode 100644 index fc484e90d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"hand-deposit-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit.imageset/Contents.json deleted file mode 100644 index b6cd4c8e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-deposit.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-duotone.imageset/Contents.json deleted file mode 100644 index 3abe51ae0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-bold.imageset/Contents.json deleted file mode 100644 index 36066150f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-eye-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-duotone.imageset/Contents.json deleted file mode 100644 index ae29e8257..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-eye-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-fill.imageset/Contents.json deleted file mode 100644 index 53e53b211..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-eye-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-light.imageset/Contents.json deleted file mode 100644 index f4b0f3afd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"hand-eye-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-thin.imageset/Contents.json deleted file mode 100644 index 137b32046..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"hand-eye-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye.imageset/Contents.json deleted file mode 100644 index bd97f3548..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-eye.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fill.imageset/Contents.json deleted file mode 100644 index 50d58b0e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-bold.imageset/Contents.json deleted file mode 100644 index 00d9b5da7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-fist-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-duotone.imageset/Contents.json deleted file mode 100644 index ed62fc07c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-fist-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-fill.imageset/Contents.json deleted file mode 100644 index d8d2c5460..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-fist-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-light.imageset/Contents.json deleted file mode 100644 index 7cba7ec57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-fist-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-thin.imageset/Contents.json deleted file mode 100644 index 907c1ebaf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"hand-fist-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist.imageset/Contents.json deleted file mode 100644 index 84d141323..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-fist.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-bold.imageset/Contents.json deleted file mode 100644 index 37a0f03f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"hand-grabbing-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-duotone.imageset/Contents.json deleted file mode 100644 index b46b0fe13..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"hand-grabbing-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-fill.imageset/Contents.json deleted file mode 100644 index 75b3783c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"hand-grabbing-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-light.imageset/Contents.json deleted file mode 100644 index 17ef4fcb6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-grabbing-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-thin.imageset/Contents.json deleted file mode 100644 index cc85a0e4b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-grabbing-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing.imageset/Contents.json deleted file mode 100644 index b889c49ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-grabbing.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-bold.imageset/Contents.json deleted file mode 100644 index df82ead69..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"hand-heart-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-duotone.imageset/Contents.json deleted file mode 100644 index a5c621ab1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-heart-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-fill.imageset/Contents.json deleted file mode 100644 index 5eca3eb7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-heart-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-light.imageset/Contents.json deleted file mode 100644 index d39f3742a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"hand-heart-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-thin.imageset/Contents.json deleted file mode 100644 index dd49a09a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"hand-heart-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart.imageset/Contents.json deleted file mode 100644 index 9444673f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-heart.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-light.imageset/Contents.json deleted file mode 100644 index 1f4a0ba70..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"hand-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-bold.imageset/Contents.json deleted file mode 100644 index 14bee9054..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-palm-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-duotone.imageset/Contents.json deleted file mode 100644 index af9e5ea69..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-palm-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-fill.imageset/Contents.json deleted file mode 100644 index 98d2339ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-palm-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-light.imageset/Contents.json deleted file mode 100644 index 961147719..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-palm-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-thin.imageset/Contents.json deleted file mode 100644 index 722514801..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-palm-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm.imageset/Contents.json deleted file mode 100644 index 9748e1d60..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"hand-palm.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-bold.imageset/Contents.json deleted file mode 100644 index bf9e115c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-peace-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-duotone.imageset/Contents.json deleted file mode 100644 index e32f68acd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-peace-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-fill.imageset/Contents.json deleted file mode 100644 index b193067bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"hand-peace-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-light.imageset/Contents.json deleted file mode 100644 index fcd93507b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"hand-peace-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-thin.imageset/Contents.json deleted file mode 100644 index 3d10758ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-peace-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace.imageset/Contents.json deleted file mode 100644 index 540a6f65f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"hand-peace.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-bold.imageset/Contents.json deleted file mode 100644 index 480b01447..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"hand-pointing-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-duotone.imageset/Contents.json deleted file mode 100644 index cde2e5dba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-pointing-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-fill.imageset/Contents.json deleted file mode 100644 index d1320b7ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-pointing-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-light.imageset/Contents.json deleted file mode 100644 index 847b6c748..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-pointing-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-thin.imageset/Contents.json deleted file mode 100644 index c45095b1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-pointing-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing.imageset/Contents.json deleted file mode 100644 index d4cd35131..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"hand-pointing.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-bold.imageset/Contents.json deleted file mode 100644 index 374c4b666..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-soap-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-duotone.imageset/Contents.json deleted file mode 100644 index 2189e173f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-soap-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-fill.imageset/Contents.json deleted file mode 100644 index 94cea8b85..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-soap-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-light.imageset/Contents.json deleted file mode 100644 index c3fc433f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-soap-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-thin.imageset/Contents.json deleted file mode 100644 index 49dfad8c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"hand-soap-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap.imageset/Contents.json deleted file mode 100644 index 11d225402..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-soap.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-bold.imageset/Contents.json deleted file mode 100644 index 2dc6470e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-swipe-left-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-duotone.imageset/Contents.json deleted file mode 100644 index a16d9ff94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-swipe-left-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-fill.imageset/Contents.json deleted file mode 100644 index ad19e3686..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"hand-swipe-left-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-light.imageset/Contents.json deleted file mode 100644 index 4c1d11453..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-swipe-left-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-thin.imageset/Contents.json deleted file mode 100644 index e57346220..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-swipe-left-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left.imageset/Contents.json deleted file mode 100644 index 4d9d9239a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-swipe-left.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-bold.imageset/Contents.json deleted file mode 100644 index 5178304f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-swipe-right-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-duotone.imageset/Contents.json deleted file mode 100644 index dd081c15e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-swipe-right-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-fill.imageset/Contents.json deleted file mode 100644 index cd52dab24..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-swipe-right-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-light.imageset/Contents.json deleted file mode 100644 index 8520c5cce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-swipe-right-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-thin.imageset/Contents.json deleted file mode 100644 index cfc96ec73..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-swipe-right-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right.imageset/Contents.json deleted file mode 100644 index ba4a2a6f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"hand-swipe-right.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-bold.imageset/Contents.json deleted file mode 100644 index b33961f01..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-tap-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-duotone.imageset/Contents.json deleted file mode 100644 index aa1d2cfd6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-tap-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-fill.imageset/Contents.json deleted file mode 100644 index 21098316c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"hand-tap-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-light.imageset/Contents.json deleted file mode 100644 index f163e4e96..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-tap-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-thin.imageset/Contents.json deleted file mode 100644 index 68fd47524..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-tap-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap.imageset/Contents.json deleted file mode 100644 index e2de4cf12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"hand-tap.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-thin.imageset/Contents.json deleted file mode 100644 index bc3d2f961..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-bold.imageset/Contents.json deleted file mode 100644 index ca8ffb5ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-waving-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-duotone.imageset/Contents.json deleted file mode 100644 index 864e1a864..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hand-waving-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-fill.imageset/Contents.json deleted file mode 100644 index f735dca14..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-waving-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-light.imageset/Contents.json deleted file mode 100644 index 985bcb8eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-waving-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-thin.imageset/Contents.json deleted file mode 100644 index ae9b8a2d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-waving-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving.imageset/Contents.json deleted file mode 100644 index 3fc580ea4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-waving.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-bold.imageset/Contents.json deleted file mode 100644 index 0458d9349..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-withdraw-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-duotone.imageset/Contents.json deleted file mode 100644 index bb472aced..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hand-withdraw-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-fill.imageset/Contents.json deleted file mode 100644 index 1fb8bde4c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hand-withdraw-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-light.imageset/Contents.json deleted file mode 100644 index 3b1081b93..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"hand-withdraw-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-thin.imageset/Contents.json deleted file mode 100644 index 08915d7e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"hand-withdraw-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw.imageset/Contents.json deleted file mode 100644 index c92d8c212..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand-withdraw.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand.imageset/Contents.json deleted file mode 100644 index 4f8b206ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hand.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-bold.imageset/Contents.json deleted file mode 100644 index 8d235345a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"handbag-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-duotone.imageset/Contents.json deleted file mode 100644 index 4920826dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"handbag-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-fill.imageset/Contents.json deleted file mode 100644 index b0ef133ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"handbag-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-light.imageset/Contents.json deleted file mode 100644 index c7fba91ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"handbag-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-bold.imageset/Contents.json deleted file mode 100644 index 19ab4629b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"handbag-simple-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-duotone.imageset/Contents.json deleted file mode 100644 index 3dc79fd9c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"handbag-simple-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-fill.imageset/Contents.json deleted file mode 100644 index bb881d0e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"handbag-simple-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-light.imageset/Contents.json deleted file mode 100644 index 02eb6ec44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"handbag-simple-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-thin.imageset/Contents.json deleted file mode 100644 index 1862894f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"handbag-simple-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple.imageset/Contents.json deleted file mode 100644 index c89dc6644..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"handbag-simple.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-thin.imageset/Contents.json deleted file mode 100644 index 39a6d7aa9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"handbag-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag.imageset/Contents.json deleted file mode 100644 index 6d934b552..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"handbag.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-bold.imageset/Contents.json deleted file mode 100644 index d90fa608e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hands-clapping-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-duotone.imageset/Contents.json deleted file mode 100644 index 109b05b03..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hands-clapping-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-fill.imageset/Contents.json deleted file mode 100644 index a358b701d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hands-clapping-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-light.imageset/Contents.json deleted file mode 100644 index 6bc733281..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hands-clapping-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-thin.imageset/Contents.json deleted file mode 100644 index f6ebb3f94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hands-clapping-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping.imageset/Contents.json deleted file mode 100644 index 53c8808bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"hands-clapping.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-bold.imageset/Contents.json deleted file mode 100644 index 2e20595b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hands-praying-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-duotone.imageset/Contents.json deleted file mode 100644 index 9ebe1ffed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hands-praying-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-fill.imageset/Contents.json deleted file mode 100644 index 225f7414e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"hands-praying-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-light.imageset/Contents.json deleted file mode 100644 index bd2e336e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hands-praying-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-thin.imageset/Contents.json deleted file mode 100644 index c5cc90654..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hands-praying-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying.imageset/Contents.json deleted file mode 100644 index bc7f781c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hands-praying.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-bold.imageset/Contents.json deleted file mode 100644 index e9a8de4e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"handshake-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-duotone.imageset/Contents.json deleted file mode 100644 index e01cd2c64..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"handshake-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-fill.imageset/Contents.json deleted file mode 100644 index af58d18e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"handshake-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-light.imageset/Contents.json deleted file mode 100644 index 690777732..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"handshake-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-thin.imageset/Contents.json deleted file mode 100644 index 8ea93a0db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"handshake-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake.imageset/Contents.json deleted file mode 100644 index e9b66ea0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"handshake.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-bold.imageset/Contents.json deleted file mode 100644 index 38e2260cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"hard-drive-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-duotone.imageset/Contents.json deleted file mode 100644 index 4969e6aae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hard-drive-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-fill.imageset/Contents.json deleted file mode 100644 index 370436119..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hard-drive-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-light.imageset/Contents.json deleted file mode 100644 index 3c033c2ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hard-drive-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-thin.imageset/Contents.json deleted file mode 100644 index 61f5d1af6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hard-drive-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive.imageset/Contents.json deleted file mode 100644 index eb625f30f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"hard-drive.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-bold.imageset/Contents.json deleted file mode 100644 index 9205b7ed8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hard-drives-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-duotone.imageset/Contents.json deleted file mode 100644 index b64d21c4b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hard-drives-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-fill.imageset/Contents.json deleted file mode 100644 index ec9cbbf90..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hard-drives-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-light.imageset/Contents.json deleted file mode 100644 index 081d2ec61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hard-drives-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-thin.imageset/Contents.json deleted file mode 100644 index a3ff629f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hard-drives-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives.imageset/Contents.json deleted file mode 100644 index 67b5a1926..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hard-drives.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-bold.imageset/Contents.json deleted file mode 100644 index e431bc11c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hard-hat-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-duotone.imageset/Contents.json deleted file mode 100644 index c4e5b140c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hard-hat-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-fill.imageset/Contents.json deleted file mode 100644 index e7a4d0421..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hard-hat-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-light.imageset/Contents.json deleted file mode 100644 index 48cc156b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hard-hat-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-thin.imageset/Contents.json deleted file mode 100644 index 889f6ecbf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"hard-hat-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat.imageset/Contents.json deleted file mode 100644 index d12d1be47..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hard-hat.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-bold.imageset/Contents.json deleted file mode 100644 index 7dc60400c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hash-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-duotone.imageset/Contents.json deleted file mode 100644 index b4e9bca0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hash-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-fill.imageset/Contents.json deleted file mode 100644 index cf21887bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hash-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-light.imageset/Contents.json deleted file mode 100644 index 5606e025c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"hash-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-bold.imageset/Contents.json deleted file mode 100644 index 1ddec4dce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"hash-straight-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-duotone.imageset/Contents.json deleted file mode 100644 index 65b5cac9c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"hash-straight-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-fill.imageset/Contents.json deleted file mode 100644 index d55f72985..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hash-straight-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-light.imageset/Contents.json deleted file mode 100644 index 24eecb1e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hash-straight-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-thin.imageset/Contents.json deleted file mode 100644 index 12b0bf366..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hash-straight-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight.imageset/Contents.json deleted file mode 100644 index 0e9af93fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hash-straight.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-thin.imageset/Contents.json deleted file mode 100644 index c5743d5b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hash-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash.imageset/Contents.json deleted file mode 100644 index 7f42b09ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hash.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-bold.imageset/Contents.json deleted file mode 100644 index 57548846c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"head-circuit-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-duotone.imageset/Contents.json deleted file mode 100644 index 2450ace92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"head-circuit-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-fill.imageset/Contents.json deleted file mode 100644 index eb66043c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"head-circuit-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-light.imageset/Contents.json deleted file mode 100644 index 7c0aa403d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"head-circuit-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-thin.imageset/Contents.json deleted file mode 100644 index 4b80ec18e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"head-circuit-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit.imageset/Contents.json deleted file mode 100644 index bf8d11f62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"head-circuit.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-bold.imageset/Contents.json deleted file mode 100644 index 2aee836ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"headlights-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-duotone.imageset/Contents.json deleted file mode 100644 index 9b750065b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"headlights-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-fill.imageset/Contents.json deleted file mode 100644 index d842ab7a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"headlights-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-light.imageset/Contents.json deleted file mode 100644 index d4ef90492..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"headlights-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-thin.imageset/Contents.json deleted file mode 100644 index 6706e0c98..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"headlights-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights.imageset/Contents.json deleted file mode 100644 index 8727b020d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"headlights.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-bold.imageset/Contents.json deleted file mode 100644 index e990c490f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"headphones-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-duotone.imageset/Contents.json deleted file mode 100644 index 138414f12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"headphones-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-fill.imageset/Contents.json deleted file mode 100644 index 7d584296c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"headphones-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-light.imageset/Contents.json deleted file mode 100644 index 540f763b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"headphones-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-thin.imageset/Contents.json deleted file mode 100644 index c04015b50..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"headphones-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones.imageset/Contents.json deleted file mode 100644 index 4468e061d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"headphones.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-bold.imageset/Contents.json deleted file mode 100644 index 3084c7c7a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"headset-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-duotone.imageset/Contents.json deleted file mode 100644 index bccd17c8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"headset-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-fill.imageset/Contents.json deleted file mode 100644 index aadfd41e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"headset-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-light.imageset/Contents.json deleted file mode 100644 index 5002f105f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"headset-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-thin.imageset/Contents.json deleted file mode 100644 index 949d0f14f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"headset-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset.imageset/Contents.json deleted file mode 100644 index bc121b902..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"headset.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-bold.imageset/Contents.json deleted file mode 100644 index 1e33bd062..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"heart-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-bold.imageset/Contents.json deleted file mode 100644 index 8f64696d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"heart-break-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-duotone.imageset/Contents.json deleted file mode 100644 index c2efb29db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"heart-break-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-fill.imageset/Contents.json deleted file mode 100644 index cac4440c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"heart-break-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-light.imageset/Contents.json deleted file mode 100644 index 9c643ba67..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"heart-break-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-thin.imageset/Contents.json deleted file mode 100644 index 2b8d69493..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"heart-break-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break.imageset/Contents.json deleted file mode 100644 index 67cc23fb4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"heart-break.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-duotone.imageset/Contents.json deleted file mode 100644 index 252829d1b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"heart-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-fill.imageset/Contents.json deleted file mode 100644 index 3ae049aae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"heart-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-bold.imageset/Contents.json deleted file mode 100644 index 28655aab8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"heart-half-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-duotone.imageset/Contents.json deleted file mode 100644 index b237a9ba7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"heart-half-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-fill.imageset/Contents.json deleted file mode 100644 index 549e03bb5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"heart-half-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-light.imageset/Contents.json deleted file mode 100644 index 503f03685..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"heart-half-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-thin.imageset/Contents.json deleted file mode 100644 index b81f964f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"heart-half-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half.imageset/Contents.json deleted file mode 100644 index bf74ffcc1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"heart-half.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-light.imageset/Contents.json deleted file mode 100644 index 76e27ed46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"heart-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-bold.imageset/Contents.json deleted file mode 100644 index 0d276f23d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"heart-straight-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-bold.imageset/Contents.json deleted file mode 100644 index cc3b518a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"heart-straight-break-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-duotone.imageset/Contents.json deleted file mode 100644 index c3d6449dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"heart-straight-break-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-fill.imageset/Contents.json deleted file mode 100644 index 90c89bd53..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"heart-straight-break-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-light.imageset/Contents.json deleted file mode 100644 index 89f90a0a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"heart-straight-break-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-thin.imageset/Contents.json deleted file mode 100644 index e677f9847..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"heart-straight-break-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break.imageset/Contents.json deleted file mode 100644 index d62d6350b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"heart-straight-break.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-duotone.imageset/Contents.json deleted file mode 100644 index d1b096d93..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"heart-straight-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-fill.imageset/Contents.json deleted file mode 100644 index 17bf3b322..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"heart-straight-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-light.imageset/Contents.json deleted file mode 100644 index b27cfad7e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"heart-straight-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-thin.imageset/Contents.json deleted file mode 100644 index 42fa8950f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"heart-straight-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight.imageset/Contents.json deleted file mode 100644 index 4c729272e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"heart-straight.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-thin.imageset/Contents.json deleted file mode 100644 index 77b892569..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"heart-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart.imageset/Contents.json deleted file mode 100644 index 35b0036f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"heart.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-bold.imageset/Contents.json deleted file mode 100644 index 22003088c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"heartbeat-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-duotone.imageset/Contents.json deleted file mode 100644 index 694c9ba8b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"heartbeat-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-fill.imageset/Contents.json deleted file mode 100644 index 6ee2e43fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"heartbeat-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-light.imageset/Contents.json deleted file mode 100644 index f0067eeb1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"heartbeat-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-thin.imageset/Contents.json deleted file mode 100644 index 7c0f2381c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"heartbeat-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat.imageset/Contents.json deleted file mode 100644 index 06a0ed794..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"heartbeat.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-bold.imageset/Contents.json deleted file mode 100644 index 0864bcf1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"hexagon-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-duotone.imageset/Contents.json deleted file mode 100644 index b37bc931d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hexagon-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-fill.imageset/Contents.json deleted file mode 100644 index fb5000757..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hexagon-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-light.imageset/Contents.json deleted file mode 100644 index 0e4dfba6c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hexagon-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-thin.imageset/Contents.json deleted file mode 100644 index dc44aada6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hexagon-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon.imageset/Contents.json deleted file mode 100644 index 9ca4dd065..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"hexagon.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-bold.imageset/Contents.json deleted file mode 100644 index daaea0fcb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"high-definition-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-duotone.imageset/Contents.json deleted file mode 100644 index 613bf3471..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"high-definition-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-fill.imageset/Contents.json deleted file mode 100644 index 08fac30cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"high-definition-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-light.imageset/Contents.json deleted file mode 100644 index 15272500c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"high-definition-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-thin.imageset/Contents.json deleted file mode 100644 index 76f3aaaef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"high-definition-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition.imageset/Contents.json deleted file mode 100644 index 5c45c1ec7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"high-definition.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-bold.imageset/Contents.json deleted file mode 100644 index 729a8fcff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"high-heel-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-duotone.imageset/Contents.json deleted file mode 100644 index 2e7d6c46f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"high-heel-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-fill.imageset/Contents.json deleted file mode 100644 index df8b66714..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"high-heel-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-light.imageset/Contents.json deleted file mode 100644 index a61c92668..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"high-heel-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-thin.imageset/Contents.json deleted file mode 100644 index 3b02674ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"high-heel-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel.imageset/Contents.json deleted file mode 100644 index 49ffa3c0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"high-heel.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-bold.imageset/Contents.json deleted file mode 100644 index df7243bc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"highlighter-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-bold.imageset/Contents.json deleted file mode 100644 index f4d4a1f64..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"highlighter-circle-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-duotone.imageset/Contents.json deleted file mode 100644 index 35db86741..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"highlighter-circle-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-fill.imageset/Contents.json deleted file mode 100644 index 7712a0ca5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"highlighter-circle-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-light.imageset/Contents.json deleted file mode 100644 index 15b8a10ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"highlighter-circle-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-thin.imageset/Contents.json deleted file mode 100644 index 2f9b53848..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"highlighter-circle-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle.imageset/Contents.json deleted file mode 100644 index f8bd25deb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"highlighter-circle.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-duotone.imageset/Contents.json deleted file mode 100644 index f03ce6fc1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"highlighter-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-fill.imageset/Contents.json deleted file mode 100644 index 1c9265ccb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"highlighter-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-light.imageset/Contents.json deleted file mode 100644 index 003f70bf5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"highlighter-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-thin.imageset/Contents.json deleted file mode 100644 index 7c9f2545f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"highlighter-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter.imageset/Contents.json deleted file mode 100644 index 985e9325d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"highlighter.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-bold.imageset/Contents.json deleted file mode 100644 index 883013c2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"hockey-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-duotone.imageset/Contents.json deleted file mode 100644 index b49d4c7a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hockey-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-fill.imageset/Contents.json deleted file mode 100644 index f13e57d77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hockey-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-light.imageset/Contents.json deleted file mode 100644 index d0c62fd34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hockey-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-thin.imageset/Contents.json deleted file mode 100644 index d97ec9765..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"hockey-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey.imageset/Contents.json deleted file mode 100644 index 8e0099ef9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hockey.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-bold.imageset/Contents.json deleted file mode 100644 index 4a3947e61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hoodie-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-duotone.imageset/Contents.json deleted file mode 100644 index cc4b9c5c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hoodie-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-fill.imageset/Contents.json deleted file mode 100644 index 23f12a2d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hoodie-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-light.imageset/Contents.json deleted file mode 100644 index 8abd3ecdb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hoodie-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-thin.imageset/Contents.json deleted file mode 100644 index 045992acb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hoodie-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie.imageset/Contents.json deleted file mode 100644 index bc6e5fa35..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hoodie.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-bold.imageset/Contents.json deleted file mode 100644 index e404935d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"horse-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-duotone.imageset/Contents.json deleted file mode 100644 index 191dafcec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"horse-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-fill.imageset/Contents.json deleted file mode 100644 index 7c90def53..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"horse-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-light.imageset/Contents.json deleted file mode 100644 index ff7818128..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"horse-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-thin.imageset/Contents.json deleted file mode 100644 index d6cbfd832..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"horse-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse.imageset/Contents.json deleted file mode 100644 index b7e3334e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"horse.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-bold.imageset/Contents.json deleted file mode 100644 index 77929e302..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"hospital-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-duotone.imageset/Contents.json deleted file mode 100644 index afc6cc142..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hospital-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-fill.imageset/Contents.json deleted file mode 100644 index e69c82b6d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hospital-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-light.imageset/Contents.json deleted file mode 100644 index 95f0c4d68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"hospital-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-thin.imageset/Contents.json deleted file mode 100644 index 3469ffe43..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"hospital-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital.imageset/Contents.json deleted file mode 100644 index 82e771883..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"hospital.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-bold.imageset/Contents.json deleted file mode 100644 index 288c21a7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hourglass-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-duotone.imageset/Contents.json deleted file mode 100644 index e7e2d962f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"hourglass-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-fill.imageset/Contents.json deleted file mode 100644 index b2d18705e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hourglass-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-bold.imageset/Contents.json deleted file mode 100644 index f6a67e131..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"hourglass-high-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-duotone.imageset/Contents.json deleted file mode 100644 index 412b1c06f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"hourglass-high-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-fill.imageset/Contents.json deleted file mode 100644 index ea6a1a8fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hourglass-high-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-light.imageset/Contents.json deleted file mode 100644 index 4565a121b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"hourglass-high-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-thin.imageset/Contents.json deleted file mode 100644 index 5077e3903..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hourglass-high-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high.imageset/Contents.json deleted file mode 100644 index 9b4ef9fc9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hourglass-high.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-light.imageset/Contents.json deleted file mode 100644 index 6d1277dd8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hourglass-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-bold.imageset/Contents.json deleted file mode 100644 index c21c8a2ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"hourglass-low-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-duotone.imageset/Contents.json deleted file mode 100644 index 69f39550f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hourglass-low-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-fill.imageset/Contents.json deleted file mode 100644 index 82f7e0c93..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"hourglass-low-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-light.imageset/Contents.json deleted file mode 100644 index 0f0b598ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hourglass-low-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-thin.imageset/Contents.json deleted file mode 100644 index 090e3c64a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hourglass-low-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low.imageset/Contents.json deleted file mode 100644 index 30fbddcaf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hourglass-low.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-bold.imageset/Contents.json deleted file mode 100644 index 99866091d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hourglass-medium-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-duotone.imageset/Contents.json deleted file mode 100644 index 49c34d2c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hourglass-medium-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-fill.imageset/Contents.json deleted file mode 100644 index c0fe80eaa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hourglass-medium-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-light.imageset/Contents.json deleted file mode 100644 index 39c4b429d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hourglass-medium-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-thin.imageset/Contents.json deleted file mode 100644 index 40bff04d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hourglass-medium-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium.imageset/Contents.json deleted file mode 100644 index 9b040e591..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hourglass-medium.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-bold.imageset/Contents.json deleted file mode 100644 index c525f4295..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hourglass-simple-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-duotone.imageset/Contents.json deleted file mode 100644 index 390791c69..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hourglass-simple-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-fill.imageset/Contents.json deleted file mode 100644 index 8653ecda6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hourglass-simple-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-bold.imageset/Contents.json deleted file mode 100644 index 8a445884c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"hourglass-simple-high-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-duotone.imageset/Contents.json deleted file mode 100644 index 720009eb4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hourglass-simple-high-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-fill.imageset/Contents.json deleted file mode 100644 index ef924c1e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hourglass-simple-high-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-light.imageset/Contents.json deleted file mode 100644 index c7a5df3b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hourglass-simple-high-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-thin.imageset/Contents.json deleted file mode 100644 index 7b9900150..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hourglass-simple-high-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high.imageset/Contents.json deleted file mode 100644 index e875925b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hourglass-simple-high.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-light.imageset/Contents.json deleted file mode 100644 index 1a0722c9c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"hourglass-simple-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-bold.imageset/Contents.json deleted file mode 100644 index 84b231448..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hourglass-simple-low-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-duotone.imageset/Contents.json deleted file mode 100644 index 2455e6bb9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hourglass-simple-low-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-fill.imageset/Contents.json deleted file mode 100644 index f5f381c29..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hourglass-simple-low-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-light.imageset/Contents.json deleted file mode 100644 index 7b84c3d86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"hourglass-simple-low-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-thin.imageset/Contents.json deleted file mode 100644 index b9c1827c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hourglass-simple-low-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low.imageset/Contents.json deleted file mode 100644 index ba97d9ff2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hourglass-simple-low.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-bold.imageset/Contents.json deleted file mode 100644 index 27f14d2c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hourglass-simple-medium-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-duotone.imageset/Contents.json deleted file mode 100644 index b82503a8c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hourglass-simple-medium-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-fill.imageset/Contents.json deleted file mode 100644 index ceb2e648f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hourglass-simple-medium-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-light.imageset/Contents.json deleted file mode 100644 index 766b48dbf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hourglass-simple-medium-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-thin.imageset/Contents.json deleted file mode 100644 index c1a6f7883..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hourglass-simple-medium-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium.imageset/Contents.json deleted file mode 100644 index 403a0b0a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"hourglass-simple-medium.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-thin.imageset/Contents.json deleted file mode 100644 index be6aaed74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hourglass-simple-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple.imageset/Contents.json deleted file mode 100644 index 90c48aa1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"hourglass-simple.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-thin.imageset/Contents.json deleted file mode 100644 index c99756f95..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"hourglass-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass.imageset/Contents.json deleted file mode 100644 index 4b7585d75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hourglass.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-bold.imageset/Contents.json deleted file mode 100644 index c90cef3e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"house-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-duotone.imageset/Contents.json deleted file mode 100644 index 89bfc6aeb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"house-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-fill.imageset/Contents.json deleted file mode 100644 index c27fc260a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"house-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-light.imageset/Contents.json deleted file mode 100644 index ddd92adb1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"house-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-bold.imageset/Contents.json deleted file mode 100644 index 44082772c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"house-line-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-duotone.imageset/Contents.json deleted file mode 100644 index 7502a9ff6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"house-line-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-fill.imageset/Contents.json deleted file mode 100644 index 4918c2d7c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"house-line-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-light.imageset/Contents.json deleted file mode 100644 index 2f58e21b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"house-line-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-thin.imageset/Contents.json deleted file mode 100644 index 6df1799eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"house-line-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line.imageset/Contents.json deleted file mode 100644 index cc53a81bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"house-line.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-bold.imageset/Contents.json deleted file mode 100644 index de9f8cbce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"house-simple-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-duotone.imageset/Contents.json deleted file mode 100644 index 6d6e90474..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"house-simple-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-fill.imageset/Contents.json deleted file mode 100644 index 67a9f2346..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"house-simple-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-light.imageset/Contents.json deleted file mode 100644 index bcf760514..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"house-simple-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-thin.imageset/Contents.json deleted file mode 100644 index bb625fb98..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"house-simple-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple.imageset/Contents.json deleted file mode 100644 index 0127f38e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"house-simple.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-thin.imageset/Contents.json deleted file mode 100644 index 72a045075..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"house-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house.imageset/Contents.json deleted file mode 100644 index 8ebe49a03..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"house.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-bold.imageset/Contents.json deleted file mode 100644 index c2d2e821f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hurricane-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-duotone.imageset/Contents.json deleted file mode 100644 index 722529dc4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"hurricane-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-fill.imageset/Contents.json deleted file mode 100644 index 78df060bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"hurricane-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-light.imageset/Contents.json deleted file mode 100644 index 4714d9cd4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"hurricane-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-thin.imageset/Contents.json deleted file mode 100644 index b67bf19d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hurricane-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane.imageset/Contents.json deleted file mode 100644 index 55e345f1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"hurricane.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-bold.imageset/Contents.json deleted file mode 100644 index ca1ed301f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"ice-cream-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-duotone.imageset/Contents.json deleted file mode 100644 index bcc549514..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"ice-cream-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-fill.imageset/Contents.json deleted file mode 100644 index 0df098b73..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ice-cream-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-light.imageset/Contents.json deleted file mode 100644 index 46295c5bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"ice-cream-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-thin.imageset/Contents.json deleted file mode 100644 index 05b4e051f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"ice-cream-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream.imageset/Contents.json deleted file mode 100644 index f8a4790e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"ice-cream.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-bold.imageset/Contents.json deleted file mode 100644 index ba6b55d23..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"identification-badge-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-duotone.imageset/Contents.json deleted file mode 100644 index e8f16c0f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"identification-badge-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-fill.imageset/Contents.json deleted file mode 100644 index cc16f10cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"identification-badge-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-light.imageset/Contents.json deleted file mode 100644 index ae2238bbf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"identification-badge-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-thin.imageset/Contents.json deleted file mode 100644 index 4d0d51d28..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"identification-badge-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge.imageset/Contents.json deleted file mode 100644 index 9dea30c9e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"identification-badge.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-bold.imageset/Contents.json deleted file mode 100644 index 88d165224..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"identification-card-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-duotone.imageset/Contents.json deleted file mode 100644 index d93caf6c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"identification-card-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-fill.imageset/Contents.json deleted file mode 100644 index d14683068..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"identification-card-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-light.imageset/Contents.json deleted file mode 100644 index d3a29a7eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"identification-card-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-thin.imageset/Contents.json deleted file mode 100644 index 93a3e0cc0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"identification-card-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card.imageset/Contents.json deleted file mode 100644 index 69c5e7ef4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"identification-card.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-bold.imageset/Contents.json deleted file mode 100644 index 3a1f4292f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"image-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-bold.imageset/Contents.json deleted file mode 100644 index 42e7ea68f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"image-broken-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-duotone.imageset/Contents.json deleted file mode 100644 index c1f7ebdfc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"image-broken-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-fill.imageset/Contents.json deleted file mode 100644 index 41bc94c25..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"image-broken-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-light.imageset/Contents.json deleted file mode 100644 index d0c2d5e0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"image-broken-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-thin.imageset/Contents.json deleted file mode 100644 index 653489c4c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"image-broken-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken.imageset/Contents.json deleted file mode 100644 index 075a6dbd1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"image-broken.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-duotone.imageset/Contents.json deleted file mode 100644 index dbf0bd1de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"image-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-fill.imageset/Contents.json deleted file mode 100644 index 90a4e033f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"image-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-light.imageset/Contents.json deleted file mode 100644 index eca86e438..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"image-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-bold.imageset/Contents.json deleted file mode 100644 index 90df9b7d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"image-square-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-duotone.imageset/Contents.json deleted file mode 100644 index ef10d354d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"image-square-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-fill.imageset/Contents.json deleted file mode 100644 index acb975940..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"image-square-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-light.imageset/Contents.json deleted file mode 100644 index 63e67e8af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"image-square-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-thin.imageset/Contents.json deleted file mode 100644 index 694944c6c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"image-square-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square.imageset/Contents.json deleted file mode 100644 index 313ff8042..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"image-square.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-thin.imageset/Contents.json deleted file mode 100644 index b5d4ebfda..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"image-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image.imageset/Contents.json deleted file mode 100644 index 92297e042..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"image.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-bold.imageset/Contents.json deleted file mode 100644 index 35f45839c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"images-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-duotone.imageset/Contents.json deleted file mode 100644 index cb802ae93..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"images-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-fill.imageset/Contents.json deleted file mode 100644 index da483a52a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"images-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-light.imageset/Contents.json deleted file mode 100644 index ad71e1425..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"images-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-bold.imageset/Contents.json deleted file mode 100644 index 26a245862..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"images-square-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-duotone.imageset/Contents.json deleted file mode 100644 index cf63d759d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"images-square-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-fill.imageset/Contents.json deleted file mode 100644 index 90e5ab1a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"images-square-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-light.imageset/Contents.json deleted file mode 100644 index 6d38fa769..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"images-square-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-thin.imageset/Contents.json deleted file mode 100644 index ac25f6ce9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"images-square-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square.imageset/Contents.json deleted file mode 100644 index 58351812f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"images-square.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-thin.imageset/Contents.json deleted file mode 100644 index 010d44372..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"images-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images.imageset/Contents.json deleted file mode 100644 index 23f4c5eb6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"images.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-bold.imageset/Contents.json deleted file mode 100644 index bf1fac142..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"infinity-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-duotone.imageset/Contents.json deleted file mode 100644 index 87a541f90..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"infinity-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-fill.imageset/Contents.json deleted file mode 100644 index fcc0309b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"infinity-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-light.imageset/Contents.json deleted file mode 100644 index e89594e2b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"infinity-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-thin.imageset/Contents.json deleted file mode 100644 index 605e4690d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"infinity-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity.imageset/Contents.json deleted file mode 100644 index 2e18b0de4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"infinity.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-bold.imageset/Contents.json deleted file mode 100644 index 64472f838..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"info-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-duotone.imageset/Contents.json deleted file mode 100644 index 32f2c002e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"info-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-fill.imageset/Contents.json deleted file mode 100644 index de91974bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"info-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-light.imageset/Contents.json deleted file mode 100644 index aa19ffe58..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"info-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-thin.imageset/Contents.json deleted file mode 100644 index 973409b19..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"info-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info.imageset/Contents.json deleted file mode 100644 index 1432cfd0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"info.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-bold.imageset/Contents.json deleted file mode 100644 index 2c6bb539a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"instagram-logo-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-duotone.imageset/Contents.json deleted file mode 100644 index 43824cd1b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"instagram-logo-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-fill.imageset/Contents.json deleted file mode 100644 index 42d14e79a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"instagram-logo-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-light.imageset/Contents.json deleted file mode 100644 index 838bc3c2b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"instagram-logo-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-thin.imageset/Contents.json deleted file mode 100644 index 728982c63..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"instagram-logo-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo.imageset/Contents.json deleted file mode 100644 index 455751d2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"instagram-logo.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-bold.imageset/Contents.json deleted file mode 100644 index d21081809..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"intersect-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-duotone.imageset/Contents.json deleted file mode 100644 index d5536ebb1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"intersect-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-fill.imageset/Contents.json deleted file mode 100644 index bbdde5681..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"intersect-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-light.imageset/Contents.json deleted file mode 100644 index 2d62ad615..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"intersect-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-bold.imageset/Contents.json deleted file mode 100644 index 2bd342754..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"intersect-square-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-duotone.imageset/Contents.json deleted file mode 100644 index 8c3d3ebcc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"intersect-square-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-fill.imageset/Contents.json deleted file mode 100644 index 3ad617d09..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"intersect-square-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-light.imageset/Contents.json deleted file mode 100644 index 1306eedd2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"intersect-square-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-thin.imageset/Contents.json deleted file mode 100644 index 4f0daa6b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"intersect-square-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square.imageset/Contents.json deleted file mode 100644 index 05e8f8664..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"intersect-square.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-thin.imageset/Contents.json deleted file mode 100644 index 65f81ebf7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"intersect-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-bold.imageset/Contents.json deleted file mode 100644 index feefb1f4f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"intersect-three-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-duotone.imageset/Contents.json deleted file mode 100644 index cc7ded3be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"intersect-three-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-fill.imageset/Contents.json deleted file mode 100644 index 68f25be74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"intersect-three-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-light.imageset/Contents.json deleted file mode 100644 index d6e1dc12e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"intersect-three-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-thin.imageset/Contents.json deleted file mode 100644 index 584e9cbc1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"intersect-three-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three.imageset/Contents.json deleted file mode 100644 index 9862f8cc4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"intersect-three.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect.imageset/Contents.json deleted file mode 100644 index 3fd05cb55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"intersect.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-bold.imageset/Contents.json deleted file mode 100644 index 616a38392..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"intersection-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-duotone.imageset/Contents.json deleted file mode 100644 index 872adbafd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"intersection-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-fill.imageset/Contents.json deleted file mode 100644 index d7aa6d592..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"intersection-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-light.imageset/Contents.json deleted file mode 100644 index f62a69bad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"intersection-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-thin.imageset/Contents.json deleted file mode 100644 index 507ae2e96..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"intersection-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection.imageset/Contents.json deleted file mode 100644 index 62a5a25c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"intersection.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-bold.imageset/Contents.json deleted file mode 100644 index 25b4fb37c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"invoice-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-duotone.imageset/Contents.json deleted file mode 100644 index 98a10005e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"invoice-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-fill.imageset/Contents.json deleted file mode 100644 index 7e37edf6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"invoice-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-light.imageset/Contents.json deleted file mode 100644 index 5e0611935..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"invoice-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-thin.imageset/Contents.json deleted file mode 100644 index a3f1571c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"invoice-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice.imageset/Contents.json deleted file mode 100644 index 91b75f26b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"invoice.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-bold.imageset/Contents.json deleted file mode 100644 index 819853f4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"island-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-duotone.imageset/Contents.json deleted file mode 100644 index 749da26f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"island-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-fill.imageset/Contents.json deleted file mode 100644 index d94fadfbf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"island-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-light.imageset/Contents.json deleted file mode 100644 index 036f8c99b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"island-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-thin.imageset/Contents.json deleted file mode 100644 index c89f7bbfc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"island-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island.imageset/Contents.json deleted file mode 100644 index 61783a1bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"island.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-bold.imageset/Contents.json deleted file mode 100644 index 944bd8bdd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"jar-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-duotone.imageset/Contents.json deleted file mode 100644 index d55f62858..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"jar-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-fill.imageset/Contents.json deleted file mode 100644 index 0ad7d16c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"jar-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-bold.imageset/Contents.json deleted file mode 100644 index a09aa4e2b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"jar-label-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-duotone.imageset/Contents.json deleted file mode 100644 index 3702bf0b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"jar-label-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-fill.imageset/Contents.json deleted file mode 100644 index d10e0a69b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"jar-label-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-light.imageset/Contents.json deleted file mode 100644 index e91e0b64c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"jar-label-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-thin.imageset/Contents.json deleted file mode 100644 index af83fcb61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"jar-label-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label.imageset/Contents.json deleted file mode 100644 index dc3c6ce9b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"jar-label.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-light.imageset/Contents.json deleted file mode 100644 index 06b5abf05..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"jar-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-thin.imageset/Contents.json deleted file mode 100644 index 62a0c6ff3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"jar-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar.imageset/Contents.json deleted file mode 100644 index e43211d48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"jar.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-bold.imageset/Contents.json deleted file mode 100644 index cd7a206f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"jeep-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-duotone.imageset/Contents.json deleted file mode 100644 index 9862c09d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"jeep-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-fill.imageset/Contents.json deleted file mode 100644 index 2aa814ee7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"jeep-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-light.imageset/Contents.json deleted file mode 100644 index aba4b2418..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"jeep-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-thin.imageset/Contents.json deleted file mode 100644 index 92be48385..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"jeep-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep.imageset/Contents.json deleted file mode 100644 index 30e5409e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"jeep.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-bold.imageset/Contents.json deleted file mode 100644 index 9ceb030f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"joystick-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-duotone.imageset/Contents.json deleted file mode 100644 index 948592e1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"joystick-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-fill.imageset/Contents.json deleted file mode 100644 index 77d75ebc6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"joystick-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-light.imageset/Contents.json deleted file mode 100644 index 86ddb1aa5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"joystick-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-thin.imageset/Contents.json deleted file mode 100644 index fe9eb2817..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"joystick-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick.imageset/Contents.json deleted file mode 100644 index d2076ccfd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"joystick.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-bold.imageset/Contents.json deleted file mode 100644 index b569828da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"kanban-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-duotone.imageset/Contents.json deleted file mode 100644 index d7a33d6ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"kanban-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-fill.imageset/Contents.json deleted file mode 100644 index c3e1eeb41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"kanban-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-light.imageset/Contents.json deleted file mode 100644 index b9cbdb163..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"kanban-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-thin.imageset/Contents.json deleted file mode 100644 index c891147ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"kanban-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban.imageset/Contents.json deleted file mode 100644 index ec9329296..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"kanban.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-bold.imageset/Contents.json deleted file mode 100644 index 33196e392..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"key-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-duotone.imageset/Contents.json deleted file mode 100644 index c30f7c229..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"key-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-fill.imageset/Contents.json deleted file mode 100644 index cee8cea82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"key-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-light.imageset/Contents.json deleted file mode 100644 index 3acbab42d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"key-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-bold.imageset/Contents.json deleted file mode 100644 index 14afe777d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"key-return-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-duotone.imageset/Contents.json deleted file mode 100644 index d2960b5b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"key-return-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-fill.imageset/Contents.json deleted file mode 100644 index 6c4c5c31a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"key-return-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-light.imageset/Contents.json deleted file mode 100644 index 10e4119f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"key-return-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-thin.imageset/Contents.json deleted file mode 100644 index f9494cb01..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"key-return-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return.imageset/Contents.json deleted file mode 100644 index 3d6f558e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"key-return.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-thin.imageset/Contents.json deleted file mode 100644 index 2a7d9d829..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"key-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key.imageset/Contents.json deleted file mode 100644 index 908eb47ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"key.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-bold.imageset/Contents.json deleted file mode 100644 index d761c92d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"keyboard-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-duotone.imageset/Contents.json deleted file mode 100644 index 9ee6feb93..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"keyboard-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-fill.imageset/Contents.json deleted file mode 100644 index 765dfd880..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"keyboard-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-light.imageset/Contents.json deleted file mode 100644 index daca3c2e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"keyboard-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-thin.imageset/Contents.json deleted file mode 100644 index 6a056e323..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"keyboard-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard.imageset/Contents.json deleted file mode 100644 index 9cb22f988..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"keyboard.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-bold.imageset/Contents.json deleted file mode 100644 index b0861ed3e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"keyhole-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-duotone.imageset/Contents.json deleted file mode 100644 index df44f1549..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"keyhole-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-fill.imageset/Contents.json deleted file mode 100644 index 2c7d9ff10..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"keyhole-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-light.imageset/Contents.json deleted file mode 100644 index 4915e698d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"keyhole-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-thin.imageset/Contents.json deleted file mode 100644 index ac1492eaa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"keyhole-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole.imageset/Contents.json deleted file mode 100644 index 70e571cc7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"keyhole.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-bold.imageset/Contents.json deleted file mode 100644 index b3b2733c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"knife-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-duotone.imageset/Contents.json deleted file mode 100644 index 40b0a3fe4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"knife-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-fill.imageset/Contents.json deleted file mode 100644 index 756866ded..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"knife-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-light.imageset/Contents.json deleted file mode 100644 index a4fe4d6ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"knife-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-thin.imageset/Contents.json deleted file mode 100644 index b64ace70e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"knife-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife.imageset/Contents.json deleted file mode 100644 index 2fc7860da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"knife.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-bold.imageset/Contents.json deleted file mode 100644 index 5609c9379..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"ladder-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-duotone.imageset/Contents.json deleted file mode 100644 index 2491bc904..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ladder-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-fill.imageset/Contents.json deleted file mode 100644 index 052c29ede..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"ladder-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-light.imageset/Contents.json deleted file mode 100644 index 178943ff5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"ladder-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-bold.imageset/Contents.json deleted file mode 100644 index 1434b3f82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ladder-simple-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-duotone.imageset/Contents.json deleted file mode 100644 index a319d8864..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"ladder-simple-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-fill.imageset/Contents.json deleted file mode 100644 index dd6d38dad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ladder-simple-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-light.imageset/Contents.json deleted file mode 100644 index cd563827c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"ladder-simple-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-thin.imageset/Contents.json deleted file mode 100644 index 444f86322..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"ladder-simple-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple.imageset/Contents.json deleted file mode 100644 index 2b62380d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"ladder-simple.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-thin.imageset/Contents.json deleted file mode 100644 index 2cafbb1eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"ladder-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder.imageset/Contents.json deleted file mode 100644 index 77f30d075..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"ladder.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-bold.imageset/Contents.json deleted file mode 100644 index 1c1140554..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"lamp-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-duotone.imageset/Contents.json deleted file mode 100644 index 7d6669067..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lamp-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-fill.imageset/Contents.json deleted file mode 100644 index d6fbcd833..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"lamp-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-light.imageset/Contents.json deleted file mode 100644 index bdfaf5875..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"lamp-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-bold.imageset/Contents.json deleted file mode 100644 index 8e3864aa3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lamp-pendant-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-duotone.imageset/Contents.json deleted file mode 100644 index f2361ec24..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"lamp-pendant-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-fill.imageset/Contents.json deleted file mode 100644 index 2035b7582..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lamp-pendant-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-light.imageset/Contents.json deleted file mode 100644 index 2dd37267b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"lamp-pendant-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-thin.imageset/Contents.json deleted file mode 100644 index ba90eff75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lamp-pendant-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant.imageset/Contents.json deleted file mode 100644 index 541f20d98..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lamp-pendant.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-thin.imageset/Contents.json deleted file mode 100644 index 6f86b02e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lamp-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp.imageset/Contents.json deleted file mode 100644 index a1e3b99fd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lamp.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-bold.imageset/Contents.json deleted file mode 100644 index 97bb995ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"laptop-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-duotone.imageset/Contents.json deleted file mode 100644 index 186c5df4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"laptop-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-fill.imageset/Contents.json deleted file mode 100644 index 15e4cd390..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"laptop-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-light.imageset/Contents.json deleted file mode 100644 index 5daecc42e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"laptop-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-thin.imageset/Contents.json deleted file mode 100644 index 59e5d01d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"laptop-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop.imageset/Contents.json deleted file mode 100644 index 7b42dfd64..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"laptop.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-bold.imageset/Contents.json deleted file mode 100644 index 9f8bf217a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lasso-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-duotone.imageset/Contents.json deleted file mode 100644 index 1d6cb1192..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"lasso-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-fill.imageset/Contents.json deleted file mode 100644 index 577e18ad6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"lasso-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-light.imageset/Contents.json deleted file mode 100644 index 8946259a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lasso-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-thin.imageset/Contents.json deleted file mode 100644 index 09b45d026..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"lasso-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso.imageset/Contents.json deleted file mode 100644 index 952f0d8eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lasso.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-bold.imageset/Contents.json deleted file mode 100644 index a11d0bd0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lastfm-logo-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-duotone.imageset/Contents.json deleted file mode 100644 index e09e0a16a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lastfm-logo-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-fill.imageset/Contents.json deleted file mode 100644 index 2cb166320..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"lastfm-logo-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-light.imageset/Contents.json deleted file mode 100644 index 10f8a5d63..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lastfm-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-thin.imageset/Contents.json deleted file mode 100644 index ffbcf581c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"lastfm-logo-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo.imageset/Contents.json deleted file mode 100644 index f78f2f0de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lastfm-logo.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-bold.imageset/Contents.json deleted file mode 100644 index de23f11a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"layout-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-duotone.imageset/Contents.json deleted file mode 100644 index 516e6196b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"layout-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-fill.imageset/Contents.json deleted file mode 100644 index 5ae25cd59..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"layout-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-light.imageset/Contents.json deleted file mode 100644 index c1e4ea83e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"layout-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-thin.imageset/Contents.json deleted file mode 100644 index 6e3bdf84b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"layout-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout.imageset/Contents.json deleted file mode 100644 index 7e1936cd6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"layout.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-bold.imageset/Contents.json deleted file mode 100644 index c2d9fcbf8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"leaf-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-duotone.imageset/Contents.json deleted file mode 100644 index dc2b9b004..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"leaf-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-fill.imageset/Contents.json deleted file mode 100644 index f4505b245..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"leaf-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-light.imageset/Contents.json deleted file mode 100644 index d1371b0c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"leaf-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-thin.imageset/Contents.json deleted file mode 100644 index 2b3fa4f9b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"leaf-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf.imageset/Contents.json deleted file mode 100644 index 85709bdd2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"leaf.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-bold.imageset/Contents.json deleted file mode 100644 index 74bd94290..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lectern-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-duotone.imageset/Contents.json deleted file mode 100644 index 9aaecc686..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lectern-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-fill.imageset/Contents.json deleted file mode 100644 index 1d051a048..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lectern-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-light.imageset/Contents.json deleted file mode 100644 index 399ef4200..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"lectern-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-thin.imageset/Contents.json deleted file mode 100644 index 26e35ebe6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lectern-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern.imageset/Contents.json deleted file mode 100644 index 9d670f1f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lectern.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-bold.imageset/Contents.json deleted file mode 100644 index c199b2fee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lego-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-duotone.imageset/Contents.json deleted file mode 100644 index ef84ad608..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"lego-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-fill.imageset/Contents.json deleted file mode 100644 index a1eccab2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lego-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-light.imageset/Contents.json deleted file mode 100644 index 8abdea939..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lego-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-bold.imageset/Contents.json deleted file mode 100644 index 1c3bf6969..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lego-smiley-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-duotone.imageset/Contents.json deleted file mode 100644 index 6cfafa136..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lego-smiley-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-fill.imageset/Contents.json deleted file mode 100644 index e5dc20437..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lego-smiley-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-light.imageset/Contents.json deleted file mode 100644 index 3ac597492..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lego-smiley-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-thin.imageset/Contents.json deleted file mode 100644 index 2e1243c1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lego-smiley-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley.imageset/Contents.json deleted file mode 100644 index 930fc5a76..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lego-smiley.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-thin.imageset/Contents.json deleted file mode 100644 index 6f5a33c9e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lego-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego.imageset/Contents.json deleted file mode 100644 index 470a8fb4b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lego.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-bold.imageset/Contents.json deleted file mode 100644 index 22120451a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"less-than-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-duotone.imageset/Contents.json deleted file mode 100644 index 4ef9755c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"less-than-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-fill.imageset/Contents.json deleted file mode 100644 index 1b5ea3363..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"less-than-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-light.imageset/Contents.json deleted file mode 100644 index 3b61cb092..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"less-than-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-bold.imageset/Contents.json deleted file mode 100644 index d33ced04f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"less-than-or-equal-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-duotone.imageset/Contents.json deleted file mode 100644 index 0558a352e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"less-than-or-equal-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-fill.imageset/Contents.json deleted file mode 100644 index 4e49fc3f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"less-than-or-equal-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-light.imageset/Contents.json deleted file mode 100644 index d6c2a8dca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"less-than-or-equal-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-thin.imageset/Contents.json deleted file mode 100644 index fc9f54ada..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"less-than-or-equal-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal.imageset/Contents.json deleted file mode 100644 index 2a308bac7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"less-than-or-equal.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-thin.imageset/Contents.json deleted file mode 100644 index 730db441e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"less-than-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than.imageset/Contents.json deleted file mode 100644 index 73aed03a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"less-than.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-bold.imageset/Contents.json deleted file mode 100644 index 6d3ffea57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"letter-circle-h-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-duotone.imageset/Contents.json deleted file mode 100644 index 1c3e27911..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"letter-circle-h-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-fill.imageset/Contents.json deleted file mode 100644 index 011f30eeb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"letter-circle-h-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-light.imageset/Contents.json deleted file mode 100644 index 4d67c6bce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"letter-circle-h-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-thin.imageset/Contents.json deleted file mode 100644 index 28a5582da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"letter-circle-h-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h.imageset/Contents.json deleted file mode 100644 index 7755ff3ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"letter-circle-h.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-bold.imageset/Contents.json deleted file mode 100644 index a25f9a384..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"letter-circle-p-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-duotone.imageset/Contents.json deleted file mode 100644 index 5d8ec171c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"letter-circle-p-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-fill.imageset/Contents.json deleted file mode 100644 index d87b40a13..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"letter-circle-p-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-light.imageset/Contents.json deleted file mode 100644 index f55a60c62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"letter-circle-p-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-thin.imageset/Contents.json deleted file mode 100644 index d514aaff0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"letter-circle-p-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p.imageset/Contents.json deleted file mode 100644 index c5952f350..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"letter-circle-p.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-bold.imageset/Contents.json deleted file mode 100644 index cb732f3f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"letter-circle-v-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-duotone.imageset/Contents.json deleted file mode 100644 index 6cc3a7b9c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"letter-circle-v-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-fill.imageset/Contents.json deleted file mode 100644 index 6981bcfba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"letter-circle-v-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-light.imageset/Contents.json deleted file mode 100644 index 599068064..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"letter-circle-v-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-thin.imageset/Contents.json deleted file mode 100644 index 3d5fab27a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"letter-circle-v-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v.imageset/Contents.json deleted file mode 100644 index 9e43128a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"letter-circle-v.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-bold.imageset/Contents.json deleted file mode 100644 index 3056bf7c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lifebuoy-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-duotone.imageset/Contents.json deleted file mode 100644 index e76d2b727..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lifebuoy-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-fill.imageset/Contents.json deleted file mode 100644 index c766821ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lifebuoy-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-light.imageset/Contents.json deleted file mode 100644 index af044db15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lifebuoy-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-thin.imageset/Contents.json deleted file mode 100644 index b35f7cf96..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lifebuoy-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy.imageset/Contents.json deleted file mode 100644 index 212386f77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lifebuoy.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-bold.imageset/Contents.json deleted file mode 100644 index 09ad624c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lightbulb-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-duotone.imageset/Contents.json deleted file mode 100644 index 97359dcc6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"lightbulb-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-bold.imageset/Contents.json deleted file mode 100644 index 8d7efafec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"lightbulb-filament-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-duotone.imageset/Contents.json deleted file mode 100644 index 9b3b0e15a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lightbulb-filament-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-fill.imageset/Contents.json deleted file mode 100644 index 27373c8af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"lightbulb-filament-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-light.imageset/Contents.json deleted file mode 100644 index c49922c34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lightbulb-filament-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-thin.imageset/Contents.json deleted file mode 100644 index a0efd929e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"lightbulb-filament-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament.imageset/Contents.json deleted file mode 100644 index ac2fb6e8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lightbulb-filament.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-fill.imageset/Contents.json deleted file mode 100644 index 640076e82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lightbulb-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-light.imageset/Contents.json deleted file mode 100644 index ecadb1497..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lightbulb-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-thin.imageset/Contents.json deleted file mode 100644 index 655ad09fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lightbulb-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb.imageset/Contents.json deleted file mode 100644 index ae06a72db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"lightbulb.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-bold.imageset/Contents.json deleted file mode 100644 index a2ff3049a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lighthouse-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-duotone.imageset/Contents.json deleted file mode 100644 index 43220fda2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"lighthouse-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-fill.imageset/Contents.json deleted file mode 100644 index 655b5ff13..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lighthouse-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-light.imageset/Contents.json deleted file mode 100644 index 313e6fcf1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lighthouse-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-thin.imageset/Contents.json deleted file mode 100644 index b52cdcbf3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lighthouse-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse.imageset/Contents.json deleted file mode 100644 index 6fec5e01c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"lighthouse.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-bold.imageset/Contents.json deleted file mode 100644 index a9f0acc5a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lightning-a-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-duotone.imageset/Contents.json deleted file mode 100644 index e42c9bfcb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lightning-a-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-fill.imageset/Contents.json deleted file mode 100644 index 75d083e6d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lightning-a-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-light.imageset/Contents.json deleted file mode 100644 index 3e29ddd99..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lightning-a-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-thin.imageset/Contents.json deleted file mode 100644 index aec63333e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lightning-a-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a.imageset/Contents.json deleted file mode 100644 index 3cfb60da8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"lightning-a.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-bold.imageset/Contents.json deleted file mode 100644 index 8fd5fa45f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lightning-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-duotone.imageset/Contents.json deleted file mode 100644 index 5bd97433d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lightning-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-fill.imageset/Contents.json deleted file mode 100644 index f5ce4cfaf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"lightning-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-light.imageset/Contents.json deleted file mode 100644 index df2e72074..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lightning-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-bold.imageset/Contents.json deleted file mode 100644 index d153c51ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lightning-slash-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-duotone.imageset/Contents.json deleted file mode 100644 index f9cbb0c5f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lightning-slash-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-fill.imageset/Contents.json deleted file mode 100644 index 9e6fa7b60..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lightning-slash-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-light.imageset/Contents.json deleted file mode 100644 index 8e0cf3c16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"lightning-slash-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-thin.imageset/Contents.json deleted file mode 100644 index 478e1947d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"lightning-slash-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash.imageset/Contents.json deleted file mode 100644 index db37d9040..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lightning-slash.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-thin.imageset/Contents.json deleted file mode 100644 index 738e36294..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lightning-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning.imageset/Contents.json deleted file mode 100644 index d3894a300..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"lightning.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-bold.imageset/Contents.json deleted file mode 100644 index 7a670d999..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"line-segment-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-duotone.imageset/Contents.json deleted file mode 100644 index 163e83219..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"line-segment-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-fill.imageset/Contents.json deleted file mode 100644 index 8ac9a288d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"line-segment-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-light.imageset/Contents.json deleted file mode 100644 index 94ac04703..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"line-segment-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-thin.imageset/Contents.json deleted file mode 100644 index a34606f5f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"line-segment-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment.imageset/Contents.json deleted file mode 100644 index 946ed63c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"line-segment.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-bold.imageset/Contents.json deleted file mode 100644 index 039546c33..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"line-segments-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-duotone.imageset/Contents.json deleted file mode 100644 index 86be94fd8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"line-segments-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-fill.imageset/Contents.json deleted file mode 100644 index c929b27c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"line-segments-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-light.imageset/Contents.json deleted file mode 100644 index 404af75df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"line-segments-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-thin.imageset/Contents.json deleted file mode 100644 index aea1a04ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"line-segments-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments.imageset/Contents.json deleted file mode 100644 index 881e53740..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"line-segments.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-bold.imageset/Contents.json deleted file mode 100644 index 29063bee1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"line-vertical-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-duotone.imageset/Contents.json deleted file mode 100644 index 635ef53df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"line-vertical-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-fill.imageset/Contents.json deleted file mode 100644 index f25fb5994..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"line-vertical-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-light.imageset/Contents.json deleted file mode 100644 index e7bbdf0d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"line-vertical-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-thin.imageset/Contents.json deleted file mode 100644 index f8ee69754..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"line-vertical-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical.imageset/Contents.json deleted file mode 100644 index 8c9a56964..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"line-vertical.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-bold.imageset/Contents.json deleted file mode 100644 index 7dcc9e26f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"link-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-bold.imageset/Contents.json deleted file mode 100644 index aecc384cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"link-break-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-duotone.imageset/Contents.json deleted file mode 100644 index beeaf8754..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"link-break-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-fill.imageset/Contents.json deleted file mode 100644 index f47ac5150..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"link-break-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-light.imageset/Contents.json deleted file mode 100644 index 63915a8b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"link-break-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-thin.imageset/Contents.json deleted file mode 100644 index b010dd81d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"link-break-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break.imageset/Contents.json deleted file mode 100644 index 3a9b2de28..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"link-break.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-duotone.imageset/Contents.json deleted file mode 100644 index 799bf91c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"link-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-fill.imageset/Contents.json deleted file mode 100644 index ef1d17349..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"link-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-light.imageset/Contents.json deleted file mode 100644 index 5b44b6b06..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"link-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-bold.imageset/Contents.json deleted file mode 100644 index f53f28a97..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"link-simple-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-bold.imageset/Contents.json deleted file mode 100644 index 41d34cb1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"link-simple-break-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-duotone.imageset/Contents.json deleted file mode 100644 index 51192c7f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"link-simple-break-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-fill.imageset/Contents.json deleted file mode 100644 index 3e9ad7f96..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"link-simple-break-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-light.imageset/Contents.json deleted file mode 100644 index ab0df908d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"link-simple-break-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-thin.imageset/Contents.json deleted file mode 100644 index 1766e75b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"link-simple-break-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break.imageset/Contents.json deleted file mode 100644 index 18f30f2b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"link-simple-break.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-duotone.imageset/Contents.json deleted file mode 100644 index 15e08fd8b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"link-simple-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-fill.imageset/Contents.json deleted file mode 100644 index c8bd7fa13..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"link-simple-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-bold.imageset/Contents.json deleted file mode 100644 index 1380b6c56..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"link-simple-horizontal-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-bold.imageset/Contents.json deleted file mode 100644 index c9d98d59c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"link-simple-horizontal-break-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-duotone.imageset/Contents.json deleted file mode 100644 index 7c52d83cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"link-simple-horizontal-break-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-fill.imageset/Contents.json deleted file mode 100644 index 8177589bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"link-simple-horizontal-break-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-light.imageset/Contents.json deleted file mode 100644 index 8920a5147..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"link-simple-horizontal-break-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-thin.imageset/Contents.json deleted file mode 100644 index 533ec5366..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"link-simple-horizontal-break-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break.imageset/Contents.json deleted file mode 100644 index 6018fbdcf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"link-simple-horizontal-break.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-duotone.imageset/Contents.json deleted file mode 100644 index f070326b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"link-simple-horizontal-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-fill.imageset/Contents.json deleted file mode 100644 index 89fc7a828..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"link-simple-horizontal-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-light.imageset/Contents.json deleted file mode 100644 index e4f312aaf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"link-simple-horizontal-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-thin.imageset/Contents.json deleted file mode 100644 index 313bbfe4b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"link-simple-horizontal-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal.imageset/Contents.json deleted file mode 100644 index 08b1d94b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"link-simple-horizontal.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-light.imageset/Contents.json deleted file mode 100644 index 0eb436cc4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"link-simple-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-thin.imageset/Contents.json deleted file mode 100644 index 33372c607..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"link-simple-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple.imageset/Contents.json deleted file mode 100644 index 41a24fac6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"link-simple.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-thin.imageset/Contents.json deleted file mode 100644 index cbeb3ef48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"link-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link.imageset/Contents.json deleted file mode 100644 index 8a9e09432..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"link.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-bold.imageset/Contents.json deleted file mode 100644 index bd5b3a1f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"linkedin-logo-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-duotone.imageset/Contents.json deleted file mode 100644 index 223748870..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"linkedin-logo-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-fill.imageset/Contents.json deleted file mode 100644 index 4e4aad33f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"linkedin-logo-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-light.imageset/Contents.json deleted file mode 100644 index a521685e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"linkedin-logo-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-thin.imageset/Contents.json deleted file mode 100644 index 9f801e175..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"linkedin-logo-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo.imageset/Contents.json deleted file mode 100644 index deac315cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"linkedin-logo.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-bold.imageset/Contents.json deleted file mode 100644 index 8c70c3084..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"linktree-logo-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-duotone.imageset/Contents.json deleted file mode 100644 index 0a89ab329..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"linktree-logo-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-fill.imageset/Contents.json deleted file mode 100644 index d1ef46b75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"linktree-logo-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-light.imageset/Contents.json deleted file mode 100644 index 218eb0ce7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"linktree-logo-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-thin.imageset/Contents.json deleted file mode 100644 index 177e09275..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"linktree-logo-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo.imageset/Contents.json deleted file mode 100644 index 7450fcb46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"linktree-logo.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-bold.imageset/Contents.json deleted file mode 100644 index 3dc00cf46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"linux-logo-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-duotone.imageset/Contents.json deleted file mode 100644 index 467feb346..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"linux-logo-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-fill.imageset/Contents.json deleted file mode 100644 index be3742835..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"linux-logo-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-light.imageset/Contents.json deleted file mode 100644 index 3564eff72..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"linux-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-thin.imageset/Contents.json deleted file mode 100644 index ad3bba9b1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"linux-logo-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo.imageset/Contents.json deleted file mode 100644 index bd820cdd1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"linux-logo.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bold.imageset/Contents.json deleted file mode 100644 index dbb374450..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"list-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-bold.imageset/Contents.json deleted file mode 100644 index f897777d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"list-bullets-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-duotone.imageset/Contents.json deleted file mode 100644 index e8ca651e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"list-bullets-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-fill.imageset/Contents.json deleted file mode 100644 index 82686f546..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"list-bullets-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-light.imageset/Contents.json deleted file mode 100644 index 39e8d2211..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"list-bullets-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-thin.imageset/Contents.json deleted file mode 100644 index a32ca4f45..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"list-bullets-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets.imageset/Contents.json deleted file mode 100644 index bb1b06d74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"list-bullets.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-bold.imageset/Contents.json deleted file mode 100644 index 4966e1797..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"list-checks-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-duotone.imageset/Contents.json deleted file mode 100644 index 4fd5a2783..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"list-checks-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-fill.imageset/Contents.json deleted file mode 100644 index 93c34c2ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"list-checks-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-light.imageset/Contents.json deleted file mode 100644 index bccadee15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"list-checks-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-thin.imageset/Contents.json deleted file mode 100644 index 3d2a25391..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"list-checks-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks.imageset/Contents.json deleted file mode 100644 index d1d46ed79..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"list-checks.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-bold.imageset/Contents.json deleted file mode 100644 index c9b487161..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"list-dashes-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-duotone.imageset/Contents.json deleted file mode 100644 index c68e56a92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"list-dashes-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-fill.imageset/Contents.json deleted file mode 100644 index 7f79c29cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"list-dashes-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-light.imageset/Contents.json deleted file mode 100644 index 0812028cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"list-dashes-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-thin.imageset/Contents.json deleted file mode 100644 index fd0b9b3e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"list-dashes-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes.imageset/Contents.json deleted file mode 100644 index c3b5084dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"list-dashes.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-duotone.imageset/Contents.json deleted file mode 100644 index 4fa8149c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"list-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-fill.imageset/Contents.json deleted file mode 100644 index 508fb6eca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"list-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-bold.imageset/Contents.json deleted file mode 100644 index b85928f6a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"list-heart-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-duotone.imageset/Contents.json deleted file mode 100644 index 01147f0f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"list-heart-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-fill.imageset/Contents.json deleted file mode 100644 index 8d8f2ce90..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"list-heart-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-light.imageset/Contents.json deleted file mode 100644 index cdc976163..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"list-heart-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-thin.imageset/Contents.json deleted file mode 100644 index 3df44884b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"list-heart-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart.imageset/Contents.json deleted file mode 100644 index 280387f4c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"list-heart.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-light.imageset/Contents.json deleted file mode 100644 index 21b05adc3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"list-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-bold.imageset/Contents.json deleted file mode 100644 index eeca66bd2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"list-magnifying-glass-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-duotone.imageset/Contents.json deleted file mode 100644 index 38b3bd4c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"list-magnifying-glass-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-fill.imageset/Contents.json deleted file mode 100644 index fbe7d2690..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"list-magnifying-glass-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-light.imageset/Contents.json deleted file mode 100644 index 0d2a24ab4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"list-magnifying-glass-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-thin.imageset/Contents.json deleted file mode 100644 index 7f78b1def..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"list-magnifying-glass-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass.imageset/Contents.json deleted file mode 100644 index 6e4b7b74d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"list-magnifying-glass.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-bold.imageset/Contents.json deleted file mode 100644 index 83847177f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"list-numbers-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-duotone.imageset/Contents.json deleted file mode 100644 index ab5a42d1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"list-numbers-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-fill.imageset/Contents.json deleted file mode 100644 index cf6df4dc4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"list-numbers-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-light.imageset/Contents.json deleted file mode 100644 index c725fe007..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"list-numbers-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-thin.imageset/Contents.json deleted file mode 100644 index 6cdd47cb1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"list-numbers-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers.imageset/Contents.json deleted file mode 100644 index 5afcb115c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"list-numbers.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-bold.imageset/Contents.json deleted file mode 100644 index d8205538c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"list-plus-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-duotone.imageset/Contents.json deleted file mode 100644 index afac727d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"list-plus-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-fill.imageset/Contents.json deleted file mode 100644 index dd7e40b48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"list-plus-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-light.imageset/Contents.json deleted file mode 100644 index 7603e56c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"list-plus-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-thin.imageset/Contents.json deleted file mode 100644 index cc975b640..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"list-plus-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus.imageset/Contents.json deleted file mode 100644 index 5cbbe805f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"list-plus.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-bold.imageset/Contents.json deleted file mode 100644 index dff41d406..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"list-star-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-duotone.imageset/Contents.json deleted file mode 100644 index a8d0cc06b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"list-star-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-fill.imageset/Contents.json deleted file mode 100644 index b58656c65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"list-star-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-light.imageset/Contents.json deleted file mode 100644 index 48d0ebd56..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"list-star-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-thin.imageset/Contents.json deleted file mode 100644 index 0d88dc03c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"list-star-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star.imageset/Contents.json deleted file mode 100644 index 652b5d828..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"list-star.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-thin.imageset/Contents.json deleted file mode 100644 index 2efac5ea0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"list-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list.imageset/Contents.json deleted file mode 100644 index c47e56c72..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"list.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-bold.imageset/Contents.json deleted file mode 100644 index 066e4efcd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"lock-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-duotone.imageset/Contents.json deleted file mode 100644 index 097dccf9a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lock-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-fill.imageset/Contents.json deleted file mode 100644 index ed1523c28..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lock-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-bold.imageset/Contents.json deleted file mode 100644 index 689b712b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-key-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-duotone.imageset/Contents.json deleted file mode 100644 index 438d2f31e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lock-key-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-fill.imageset/Contents.json deleted file mode 100644 index beb524628..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-key-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-light.imageset/Contents.json deleted file mode 100644 index af615efc9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"lock-key-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-bold.imageset/Contents.json deleted file mode 100644 index b82e3f3db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lock-key-open-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-duotone.imageset/Contents.json deleted file mode 100644 index 690f6f587..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lock-key-open-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-fill.imageset/Contents.json deleted file mode 100644 index eec1e97ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lock-key-open-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-light.imageset/Contents.json deleted file mode 100644 index 744451b40..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-key-open-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-thin.imageset/Contents.json deleted file mode 100644 index d579bd9dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-key-open-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open.imageset/Contents.json deleted file mode 100644 index 8ec6f2b8b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lock-key-open.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-thin.imageset/Contents.json deleted file mode 100644 index aebb1db1a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lock-key-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key.imageset/Contents.json deleted file mode 100644 index fc0b97da2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"lock-key.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-bold.imageset/Contents.json deleted file mode 100644 index beaf6c2b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-laminated-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-duotone.imageset/Contents.json deleted file mode 100644 index 253dceee3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-laminated-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-fill.imageset/Contents.json deleted file mode 100644 index 2c76f870b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"lock-laminated-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-light.imageset/Contents.json deleted file mode 100644 index 4e23d892d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lock-laminated-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-bold.imageset/Contents.json deleted file mode 100644 index 84fa02fef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"lock-laminated-open-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-duotone.imageset/Contents.json deleted file mode 100644 index 255190c92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"lock-laminated-open-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-fill.imageset/Contents.json deleted file mode 100644 index 9824568a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"lock-laminated-open-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-light.imageset/Contents.json deleted file mode 100644 index 9acd3dcfa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lock-laminated-open-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-thin.imageset/Contents.json deleted file mode 100644 index cf2c42ff2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-laminated-open-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open.imageset/Contents.json deleted file mode 100644 index 2afbc3b5c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"lock-laminated-open.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-thin.imageset/Contents.json deleted file mode 100644 index a46a21c8c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-laminated-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated.imageset/Contents.json deleted file mode 100644 index 857ae836b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lock-laminated.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-light.imageset/Contents.json deleted file mode 100644 index ba5833344..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lock-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-bold.imageset/Contents.json deleted file mode 100644 index f5b76a896..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-open-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-duotone.imageset/Contents.json deleted file mode 100644 index 25f32f998..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-open-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-fill.imageset/Contents.json deleted file mode 100644 index 41eb6acd2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lock-open-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-light.imageset/Contents.json deleted file mode 100644 index f1580c418..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lock-open-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-thin.imageset/Contents.json deleted file mode 100644 index 6d5ba19d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lock-open-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open.imageset/Contents.json deleted file mode 100644 index 4cb069cea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"lock-open.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-bold.imageset/Contents.json deleted file mode 100644 index f02a1a132..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-simple-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-duotone.imageset/Contents.json deleted file mode 100644 index 6cbc99d4f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"lock-simple-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-fill.imageset/Contents.json deleted file mode 100644 index b1e499acd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lock-simple-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-light.imageset/Contents.json deleted file mode 100644 index ce1fb98cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"lock-simple-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-bold.imageset/Contents.json deleted file mode 100644 index c92972813..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-simple-open-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-duotone.imageset/Contents.json deleted file mode 100644 index 23d80cde7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-simple-open-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-fill.imageset/Contents.json deleted file mode 100644 index 59fff7006..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-simple-open-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-light.imageset/Contents.json deleted file mode 100644 index 20180c82c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lock-simple-open-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-thin.imageset/Contents.json deleted file mode 100644 index 639ebeebe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-simple-open-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open.imageset/Contents.json deleted file mode 100644 index a48633407..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lock-simple-open.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-thin.imageset/Contents.json deleted file mode 100644 index 759c1bd67..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lock-simple-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple.imageset/Contents.json deleted file mode 100644 index 9c937ab78..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lock-simple.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-thin.imageset/Contents.json deleted file mode 100644 index cd69843f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"lock-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock.imageset/Contents.json deleted file mode 100644 index 180a72c0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"lock.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-bold.imageset/Contents.json deleted file mode 100644 index 59c9a5ddf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"lockers-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-duotone.imageset/Contents.json deleted file mode 100644 index 316400bc6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lockers-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-fill.imageset/Contents.json deleted file mode 100644 index 986821471..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"lockers-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-light.imageset/Contents.json deleted file mode 100644 index 0dad0f9cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"lockers-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-thin.imageset/Contents.json deleted file mode 100644 index 9e80a828a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lockers-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers.imageset/Contents.json deleted file mode 100644 index 3b7327718..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"lockers.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-bold.imageset/Contents.json deleted file mode 100644 index 537311e81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"log-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-duotone.imageset/Contents.json deleted file mode 100644 index 505a6f9b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"log-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-fill.imageset/Contents.json deleted file mode 100644 index 48034254b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"log-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-light.imageset/Contents.json deleted file mode 100644 index 972cbe656..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"log-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-thin.imageset/Contents.json deleted file mode 100644 index 8aef326b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"log-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log.imageset/Contents.json deleted file mode 100644 index f34e6080a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"log.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-bold.imageset/Contents.json deleted file mode 100644 index fec3e1505..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"magic-wand-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-duotone.imageset/Contents.json deleted file mode 100644 index b799810b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"magic-wand-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-fill.imageset/Contents.json deleted file mode 100644 index d68a7e0a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"magic-wand-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-light.imageset/Contents.json deleted file mode 100644 index a23cb6cd5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"magic-wand-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-thin.imageset/Contents.json deleted file mode 100644 index df6ec0f60..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"magic-wand-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand.imageset/Contents.json deleted file mode 100644 index 8d54d987d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"magic-wand.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-bold.imageset/Contents.json deleted file mode 100644 index 27176f4d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"magnet-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-duotone.imageset/Contents.json deleted file mode 100644 index 24cc1f402..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"magnet-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-fill.imageset/Contents.json deleted file mode 100644 index 73ffbedc5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"magnet-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-light.imageset/Contents.json deleted file mode 100644 index baf84a642..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"magnet-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-bold.imageset/Contents.json deleted file mode 100644 index c7ec0b98d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"magnet-straight-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-duotone.imageset/Contents.json deleted file mode 100644 index 03bd2d30a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"magnet-straight-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-fill.imageset/Contents.json deleted file mode 100644 index 8bbb1aa82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"magnet-straight-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-light.imageset/Contents.json deleted file mode 100644 index a4608fbe9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"magnet-straight-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-thin.imageset/Contents.json deleted file mode 100644 index fec42b5ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"magnet-straight-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight.imageset/Contents.json deleted file mode 100644 index abaa87c40..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"magnet-straight.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-thin.imageset/Contents.json deleted file mode 100644 index 4a5a1cefb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"magnet-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet.imageset/Contents.json deleted file mode 100644 index 65bd7d4f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"magnet.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-bold.imageset/Contents.json deleted file mode 100644 index a011c1395..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"magnifying-glass-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-duotone.imageset/Contents.json deleted file mode 100644 index 7fe574055..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"magnifying-glass-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-fill.imageset/Contents.json deleted file mode 100644 index bda150664..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"magnifying-glass-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-light.imageset/Contents.json deleted file mode 100644 index b3170e811..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"magnifying-glass-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-bold.imageset/Contents.json deleted file mode 100644 index a294f7492..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"magnifying-glass-minus-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-duotone.imageset/Contents.json deleted file mode 100644 index b2dcb08e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"magnifying-glass-minus-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-fill.imageset/Contents.json deleted file mode 100644 index 67ddf05c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"magnifying-glass-minus-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-light.imageset/Contents.json deleted file mode 100644 index 2ffbfe308..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"magnifying-glass-minus-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-thin.imageset/Contents.json deleted file mode 100644 index c812f2cf0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"magnifying-glass-minus-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus.imageset/Contents.json deleted file mode 100644 index 35cc675ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"magnifying-glass-minus.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-bold.imageset/Contents.json deleted file mode 100644 index 7a7336cfc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"magnifying-glass-plus-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-duotone.imageset/Contents.json deleted file mode 100644 index e5c59f911..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"magnifying-glass-plus-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-fill.imageset/Contents.json deleted file mode 100644 index 639ff013f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"magnifying-glass-plus-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-light.imageset/Contents.json deleted file mode 100644 index ae2a9da01..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"magnifying-glass-plus-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-thin.imageset/Contents.json deleted file mode 100644 index 41f544add..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"magnifying-glass-plus-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus.imageset/Contents.json deleted file mode 100644 index b0f78bd5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"magnifying-glass-plus.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-thin.imageset/Contents.json deleted file mode 100644 index 6f7cf36e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"magnifying-glass-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass.imageset/Contents.json deleted file mode 100644 index 9a4a9efd9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"magnifying-glass.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-bold.imageset/Contents.json deleted file mode 100644 index 821bb3e3c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"mailbox-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-duotone.imageset/Contents.json deleted file mode 100644 index c9e0c2542..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"mailbox-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-fill.imageset/Contents.json deleted file mode 100644 index 88cba1112..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"mailbox-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-light.imageset/Contents.json deleted file mode 100644 index b3c4dc8df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mailbox-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-thin.imageset/Contents.json deleted file mode 100644 index b0d99c305..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"mailbox-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox.imageset/Contents.json deleted file mode 100644 index c782b897e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"mailbox.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-bold.imageset/Contents.json deleted file mode 100644 index 64d97eb8c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"map-pin-area-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-duotone.imageset/Contents.json deleted file mode 100644 index 2ca0c5873..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"map-pin-area-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-fill.imageset/Contents.json deleted file mode 100644 index 57c2d7144..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"map-pin-area-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-light.imageset/Contents.json deleted file mode 100644 index 8bb00765f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"map-pin-area-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-thin.imageset/Contents.json deleted file mode 100644 index 0a6cc727c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"map-pin-area-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area.imageset/Contents.json deleted file mode 100644 index 6aa08caab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"map-pin-area.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-bold.imageset/Contents.json deleted file mode 100644 index 6548d0b0c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"map-pin-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-duotone.imageset/Contents.json deleted file mode 100644 index ea505c4cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"map-pin-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-fill.imageset/Contents.json deleted file mode 100644 index ce9e07c5e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"map-pin-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-light.imageset/Contents.json deleted file mode 100644 index 9768bcfc6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"map-pin-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-bold.imageset/Contents.json deleted file mode 100644 index a1aa14b48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"map-pin-line-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-duotone.imageset/Contents.json deleted file mode 100644 index 1c5b3d318..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"map-pin-line-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-fill.imageset/Contents.json deleted file mode 100644 index 14440142b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"map-pin-line-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-light.imageset/Contents.json deleted file mode 100644 index 883d096d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"map-pin-line-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-thin.imageset/Contents.json deleted file mode 100644 index fc5e93eac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"map-pin-line-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line.imageset/Contents.json deleted file mode 100644 index 2b9b4b4ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"map-pin-line.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-bold.imageset/Contents.json deleted file mode 100644 index 3eafc3f0f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"map-pin-plus-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-duotone.imageset/Contents.json deleted file mode 100644 index d12b7bd8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"map-pin-plus-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-fill.imageset/Contents.json deleted file mode 100644 index f671dbe61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"map-pin-plus-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-light.imageset/Contents.json deleted file mode 100644 index 8bf6e3f21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"map-pin-plus-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-thin.imageset/Contents.json deleted file mode 100644 index 946a28830..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"map-pin-plus-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus.imageset/Contents.json deleted file mode 100644 index 8785a3cf7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"map-pin-plus.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-bold.imageset/Contents.json deleted file mode 100644 index b567c6c97..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"map-pin-simple-area-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-duotone.imageset/Contents.json deleted file mode 100644 index fd2eb69a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"map-pin-simple-area-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-fill.imageset/Contents.json deleted file mode 100644 index bb689e8de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"map-pin-simple-area-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-light.imageset/Contents.json deleted file mode 100644 index 79747dbe7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"map-pin-simple-area-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-thin.imageset/Contents.json deleted file mode 100644 index 2478da259..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"map-pin-simple-area-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area.imageset/Contents.json deleted file mode 100644 index 887da6c6f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"map-pin-simple-area.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-bold.imageset/Contents.json deleted file mode 100644 index 07d241998..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"map-pin-simple-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-duotone.imageset/Contents.json deleted file mode 100644 index 62eb5d42d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"map-pin-simple-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-fill.imageset/Contents.json deleted file mode 100644 index 6682428a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"map-pin-simple-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-light.imageset/Contents.json deleted file mode 100644 index 906b38caf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"map-pin-simple-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-bold.imageset/Contents.json deleted file mode 100644 index 721d1f48c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"map-pin-simple-line-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-duotone.imageset/Contents.json deleted file mode 100644 index 46a1fddbe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"map-pin-simple-line-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-fill.imageset/Contents.json deleted file mode 100644 index 334a28bed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"map-pin-simple-line-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-light.imageset/Contents.json deleted file mode 100644 index 685a5ad11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"map-pin-simple-line-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-thin.imageset/Contents.json deleted file mode 100644 index f667ff0b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"map-pin-simple-line-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line.imageset/Contents.json deleted file mode 100644 index 3a246a83b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"map-pin-simple-line.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-thin.imageset/Contents.json deleted file mode 100644 index 672e2faf8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"map-pin-simple-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple.imageset/Contents.json deleted file mode 100644 index 8f7f35faa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"map-pin-simple.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-thin.imageset/Contents.json deleted file mode 100644 index cef01d1ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"map-pin-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin.imageset/Contents.json deleted file mode 100644 index cf17b0d27..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"map-pin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-bold.imageset/Contents.json deleted file mode 100644 index 612002052..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"map-trifold-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-duotone.imageset/Contents.json deleted file mode 100644 index a01f0072a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"map-trifold-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-fill.imageset/Contents.json deleted file mode 100644 index 3e278fa68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"map-trifold-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-light.imageset/Contents.json deleted file mode 100644 index ef4ffeaaf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"map-trifold-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-thin.imageset/Contents.json deleted file mode 100644 index 47acaa24a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"map-trifold-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold.imageset/Contents.json deleted file mode 100644 index 143ffd190..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"map-trifold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-bold.imageset/Contents.json deleted file mode 100644 index f7d948573..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"markdown-logo-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-duotone.imageset/Contents.json deleted file mode 100644 index f426444a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"markdown-logo-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-fill.imageset/Contents.json deleted file mode 100644 index 89c3ee6cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"markdown-logo-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-light.imageset/Contents.json deleted file mode 100644 index c6b0ec630..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"markdown-logo-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-thin.imageset/Contents.json deleted file mode 100644 index 643712ad4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"markdown-logo-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo.imageset/Contents.json deleted file mode 100644 index 9a85b51d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"markdown-logo.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-bold.imageset/Contents.json deleted file mode 100644 index c864c9fc8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"marker-circle-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-duotone.imageset/Contents.json deleted file mode 100644 index 9efdd33c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"marker-circle-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-fill.imageset/Contents.json deleted file mode 100644 index 5ddcbf23d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"marker-circle-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-light.imageset/Contents.json deleted file mode 100644 index 134f9e58a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"marker-circle-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-thin.imageset/Contents.json deleted file mode 100644 index 24a880073..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"marker-circle-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle.imageset/Contents.json deleted file mode 100644 index 0d2f8e655..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"marker-circle.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-bold.imageset/Contents.json deleted file mode 100644 index 6661748b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"martini-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-duotone.imageset/Contents.json deleted file mode 100644 index 65546f50f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"martini-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-fill.imageset/Contents.json deleted file mode 100644 index 0598b1382..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"martini-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-light.imageset/Contents.json deleted file mode 100644 index cb76e15d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"martini-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-thin.imageset/Contents.json deleted file mode 100644 index c2a6eb790..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"martini-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini.imageset/Contents.json deleted file mode 100644 index 128bcc855..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"martini.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-bold.imageset/Contents.json deleted file mode 100644 index 47d40443c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mask-happy-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-duotone.imageset/Contents.json deleted file mode 100644 index 7ad57fb8b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"mask-happy-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-fill.imageset/Contents.json deleted file mode 100644 index 4cd6cb24f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mask-happy-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-light.imageset/Contents.json deleted file mode 100644 index d8d843df3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"mask-happy-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-thin.imageset/Contents.json deleted file mode 100644 index 25cea0e71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"mask-happy-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy.imageset/Contents.json deleted file mode 100644 index da303dbb4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"mask-happy.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-bold.imageset/Contents.json deleted file mode 100644 index f55aec7ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"mask-sad-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-duotone.imageset/Contents.json deleted file mode 100644 index e37044265..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"mask-sad-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-fill.imageset/Contents.json deleted file mode 100644 index bb7be4b63..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"mask-sad-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-light.imageset/Contents.json deleted file mode 100644 index 3676918e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mask-sad-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-thin.imageset/Contents.json deleted file mode 100644 index 6e5f7cc6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mask-sad-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad.imageset/Contents.json deleted file mode 100644 index 5dffecdc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"mask-sad.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-bold.imageset/Contents.json deleted file mode 100644 index 9233b5b0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"mastodon-logo-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-duotone.imageset/Contents.json deleted file mode 100644 index 4c93a0330..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"mastodon-logo-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-fill.imageset/Contents.json deleted file mode 100644 index 20703333d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"mastodon-logo-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-light.imageset/Contents.json deleted file mode 100644 index 98ca1d22b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"mastodon-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-thin.imageset/Contents.json deleted file mode 100644 index 0b0618fc3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mastodon-logo-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo.imageset/Contents.json deleted file mode 100644 index 77ee838a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mastodon-logo.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-bold.imageset/Contents.json deleted file mode 100644 index a47ecb6f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"math-operations-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-duotone.imageset/Contents.json deleted file mode 100644 index f7d88adb5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"math-operations-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-fill.imageset/Contents.json deleted file mode 100644 index a45a34698..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"math-operations-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-light.imageset/Contents.json deleted file mode 100644 index d03c3a276..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"math-operations-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-thin.imageset/Contents.json deleted file mode 100644 index e4744d84f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"math-operations-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations.imageset/Contents.json deleted file mode 100644 index 974e6b2ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"math-operations.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-bold.imageset/Contents.json deleted file mode 100644 index 17fdbbbf3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"matrix-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-duotone.imageset/Contents.json deleted file mode 100644 index a4c8b4c40..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"matrix-logo-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-fill.imageset/Contents.json deleted file mode 100644 index de555be8a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"matrix-logo-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-light.imageset/Contents.json deleted file mode 100644 index 293bf0160..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"matrix-logo-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-thin.imageset/Contents.json deleted file mode 100644 index db6d2de08..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"matrix-logo-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo.imageset/Contents.json deleted file mode 100644 index fe3bb6c2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"matrix-logo.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-bold.imageset/Contents.json deleted file mode 100644 index c0e9eb34d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"medal-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-duotone.imageset/Contents.json deleted file mode 100644 index 03be221c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"medal-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-fill.imageset/Contents.json deleted file mode 100644 index 7ca19b6c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"medal-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-light.imageset/Contents.json deleted file mode 100644 index 427f86848..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"medal-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-bold.imageset/Contents.json deleted file mode 100644 index 403fe9ca1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"medal-military-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-duotone.imageset/Contents.json deleted file mode 100644 index 01e88c4f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"medal-military-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-fill.imageset/Contents.json deleted file mode 100644 index 92ac02f5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"medal-military-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-light.imageset/Contents.json deleted file mode 100644 index 401a9cc91..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"medal-military-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-thin.imageset/Contents.json deleted file mode 100644 index 8b37dc3e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"medal-military-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military.imageset/Contents.json deleted file mode 100644 index 6f027371a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"medal-military.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-thin.imageset/Contents.json deleted file mode 100644 index 68cb0b898..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"medal-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal.imageset/Contents.json deleted file mode 100644 index 426921c89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"medal.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-bold.imageset/Contents.json deleted file mode 100644 index 50604cbe0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"medium-logo-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-duotone.imageset/Contents.json deleted file mode 100644 index 5cd46c44b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"medium-logo-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-fill.imageset/Contents.json deleted file mode 100644 index 4767b372d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"medium-logo-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-light.imageset/Contents.json deleted file mode 100644 index 403ef4c7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"medium-logo-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-thin.imageset/Contents.json deleted file mode 100644 index d53fb0925..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"medium-logo-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo.imageset/Contents.json deleted file mode 100644 index c5311c1d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"medium-logo.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-bold.imageset/Contents.json deleted file mode 100644 index 07174be2f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"megaphone-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-duotone.imageset/Contents.json deleted file mode 100644 index f8159aec2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"megaphone-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-fill.imageset/Contents.json deleted file mode 100644 index 1f48053ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"megaphone-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-light.imageset/Contents.json deleted file mode 100644 index b4973d743..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"megaphone-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-bold.imageset/Contents.json deleted file mode 100644 index 73ce21c5f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"megaphone-simple-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-duotone.imageset/Contents.json deleted file mode 100644 index 214cfdc3e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"megaphone-simple-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-fill.imageset/Contents.json deleted file mode 100644 index 831f4f881..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"megaphone-simple-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-light.imageset/Contents.json deleted file mode 100644 index 092f0037a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"megaphone-simple-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-thin.imageset/Contents.json deleted file mode 100644 index 1c88b8400..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"megaphone-simple-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple.imageset/Contents.json deleted file mode 100644 index 98f5eb59b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"megaphone-simple.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-thin.imageset/Contents.json deleted file mode 100644 index eb06b99ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"megaphone-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone.imageset/Contents.json deleted file mode 100644 index c9faabce7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"megaphone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-bold.imageset/Contents.json deleted file mode 100644 index 98d412f18..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"member-of-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-duotone.imageset/Contents.json deleted file mode 100644 index 15aa52ae2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"member-of-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-fill.imageset/Contents.json deleted file mode 100644 index 2e60c8d66..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"member-of-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-light.imageset/Contents.json deleted file mode 100644 index d025f293b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"member-of-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-thin.imageset/Contents.json deleted file mode 100644 index 995f905b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"member-of-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of.imageset/Contents.json deleted file mode 100644 index bb023edd5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"member-of.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-bold.imageset/Contents.json deleted file mode 100644 index 7449c91e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"memory-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-duotone.imageset/Contents.json deleted file mode 100644 index 6af8145ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"memory-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-fill.imageset/Contents.json deleted file mode 100644 index 6002c9ad7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"memory-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-light.imageset/Contents.json deleted file mode 100644 index b8993fc91..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"memory-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-thin.imageset/Contents.json deleted file mode 100644 index 8e0881b07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"memory-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory.imageset/Contents.json deleted file mode 100644 index 4953ca6a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"memory.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-bold.imageset/Contents.json deleted file mode 100644 index a844a11b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"messenger-logo-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-duotone.imageset/Contents.json deleted file mode 100644 index 1f3e3c676..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"messenger-logo-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-fill.imageset/Contents.json deleted file mode 100644 index e16b5fcba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"messenger-logo-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-light.imageset/Contents.json deleted file mode 100644 index b43ddb311..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"messenger-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-thin.imageset/Contents.json deleted file mode 100644 index ffefe4904..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"messenger-logo-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo.imageset/Contents.json deleted file mode 100644 index 8022345f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"messenger-logo.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-bold.imageset/Contents.json deleted file mode 100644 index f306a1221..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"meta-logo-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-duotone.imageset/Contents.json deleted file mode 100644 index d6ab97c7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"meta-logo-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-fill.imageset/Contents.json deleted file mode 100644 index b4a864646..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"meta-logo-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-light.imageset/Contents.json deleted file mode 100644 index acb8a6ca9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"meta-logo-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-thin.imageset/Contents.json deleted file mode 100644 index 3dfc391c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"meta-logo-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo.imageset/Contents.json deleted file mode 100644 index a49d952c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"meta-logo.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-bold.imageset/Contents.json deleted file mode 100644 index 511a6641c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"meteor-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-duotone.imageset/Contents.json deleted file mode 100644 index ca9563894..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"meteor-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-fill.imageset/Contents.json deleted file mode 100644 index 50faf6b8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"meteor-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-light.imageset/Contents.json deleted file mode 100644 index f27bcae0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"meteor-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-thin.imageset/Contents.json deleted file mode 100644 index f2e28c3ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"meteor-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor.imageset/Contents.json deleted file mode 100644 index de7dcc554..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"meteor.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-bold.imageset/Contents.json deleted file mode 100644 index ed0772db6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"metronome-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-duotone.imageset/Contents.json deleted file mode 100644 index 8fbf26c82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"metronome-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-fill.imageset/Contents.json deleted file mode 100644 index ec045f576..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"metronome-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-light.imageset/Contents.json deleted file mode 100644 index 6c3a5701c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"metronome-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-thin.imageset/Contents.json deleted file mode 100644 index 5a75227c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"metronome-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome.imageset/Contents.json deleted file mode 100644 index ef1a6b7cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"metronome.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-bold.imageset/Contents.json deleted file mode 100644 index 9dae64756..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"microphone-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-duotone.imageset/Contents.json deleted file mode 100644 index 136604ea4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"microphone-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-fill.imageset/Contents.json deleted file mode 100644 index c76caacbd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"microphone-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-light.imageset/Contents.json deleted file mode 100644 index 8d0dd0256..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"microphone-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-bold.imageset/Contents.json deleted file mode 100644 index de91452bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"microphone-slash-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-duotone.imageset/Contents.json deleted file mode 100644 index adb4f5fc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"microphone-slash-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-fill.imageset/Contents.json deleted file mode 100644 index b436df226..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"microphone-slash-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-light.imageset/Contents.json deleted file mode 100644 index 86790d5f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"microphone-slash-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-thin.imageset/Contents.json deleted file mode 100644 index 176b2b6b1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"microphone-slash-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash.imageset/Contents.json deleted file mode 100644 index 10693e07b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"microphone-slash.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-bold.imageset/Contents.json deleted file mode 100644 index a24151373..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"microphone-stage-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-duotone.imageset/Contents.json deleted file mode 100644 index eb9825114..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"microphone-stage-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-fill.imageset/Contents.json deleted file mode 100644 index a2074515d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"microphone-stage-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-light.imageset/Contents.json deleted file mode 100644 index db47f7df4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"microphone-stage-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-thin.imageset/Contents.json deleted file mode 100644 index 442af195c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"microphone-stage-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage.imageset/Contents.json deleted file mode 100644 index 111fa8949..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"microphone-stage.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-thin.imageset/Contents.json deleted file mode 100644 index fc3f56b72..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"microphone-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone.imageset/Contents.json deleted file mode 100644 index 76bc99b1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"microphone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-bold.imageset/Contents.json deleted file mode 100644 index fdeac1c9b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"microscope-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-duotone.imageset/Contents.json deleted file mode 100644 index fc15ab074..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"microscope-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-fill.imageset/Contents.json deleted file mode 100644 index 4630afc8a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"microscope-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-light.imageset/Contents.json deleted file mode 100644 index 5a6a79aaa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"microscope-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-thin.imageset/Contents.json deleted file mode 100644 index 02fe79f67..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"microscope-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope.imageset/Contents.json deleted file mode 100644 index 65807619e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"microscope.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-bold.imageset/Contents.json deleted file mode 100644 index c07502978..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"microsoft-excel-logo-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-duotone.imageset/Contents.json deleted file mode 100644 index ba6d78a62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"microsoft-excel-logo-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-fill.imageset/Contents.json deleted file mode 100644 index f7dcbc022..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"microsoft-excel-logo-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-light.imageset/Contents.json deleted file mode 100644 index d20307f8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"microsoft-excel-logo-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-thin.imageset/Contents.json deleted file mode 100644 index 8f0b4b0d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"microsoft-excel-logo-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo.imageset/Contents.json deleted file mode 100644 index 1362d6bd1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"microsoft-excel-logo.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-bold.imageset/Contents.json deleted file mode 100644 index 5a75423e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"microsoft-outlook-logo-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-duotone.imageset/Contents.json deleted file mode 100644 index 89f98da1b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"microsoft-outlook-logo-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-fill.imageset/Contents.json deleted file mode 100644 index 5ac7db043..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"microsoft-outlook-logo-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-light.imageset/Contents.json deleted file mode 100644 index e0e79e042..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"microsoft-outlook-logo-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-thin.imageset/Contents.json deleted file mode 100644 index 60fcab6fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"microsoft-outlook-logo-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo.imageset/Contents.json deleted file mode 100644 index c36de30f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"microsoft-outlook-logo.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-bold.imageset/Contents.json deleted file mode 100644 index 50ee9ff09..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"microsoft-powerpoint-logo-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-duotone.imageset/Contents.json deleted file mode 100644 index d171abe3a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"microsoft-powerpoint-logo-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-fill.imageset/Contents.json deleted file mode 100644 index a8f999cf4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"microsoft-powerpoint-logo-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-light.imageset/Contents.json deleted file mode 100644 index c5c971eb1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"microsoft-powerpoint-logo-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-thin.imageset/Contents.json deleted file mode 100644 index 36f0574d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"microsoft-powerpoint-logo-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo.imageset/Contents.json deleted file mode 100644 index e098f45bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"microsoft-powerpoint-logo.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-bold.imageset/Contents.json deleted file mode 100644 index a725c963d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"microsoft-teams-logo-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-duotone.imageset/Contents.json deleted file mode 100644 index d931f6cdd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"microsoft-teams-logo-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-fill.imageset/Contents.json deleted file mode 100644 index d075f6807..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"microsoft-teams-logo-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-light.imageset/Contents.json deleted file mode 100644 index 1c6e59cbd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"microsoft-teams-logo-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-thin.imageset/Contents.json deleted file mode 100644 index 22f681964..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"microsoft-teams-logo-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo.imageset/Contents.json deleted file mode 100644 index 7a4c2b15a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"microsoft-teams-logo.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-bold.imageset/Contents.json deleted file mode 100644 index 3c13c3490..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"microsoft-word-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-duotone.imageset/Contents.json deleted file mode 100644 index 409eaafba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"microsoft-word-logo-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-fill.imageset/Contents.json deleted file mode 100644 index 6dd32568b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"microsoft-word-logo-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-light.imageset/Contents.json deleted file mode 100644 index 51246a18b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"microsoft-word-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-thin.imageset/Contents.json deleted file mode 100644 index 6f2337b5b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"microsoft-word-logo-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo.imageset/Contents.json deleted file mode 100644 index 65f5bf919..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"microsoft-word-logo.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-bold.imageset/Contents.json deleted file mode 100644 index 7106f49d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"minus-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-bold.imageset/Contents.json deleted file mode 100644 index 5b213ea32..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"minus-circle-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-duotone.imageset/Contents.json deleted file mode 100644 index be31bf9ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"minus-circle-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-fill.imageset/Contents.json deleted file mode 100644 index 2647c6f2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"minus-circle-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-light.imageset/Contents.json deleted file mode 100644 index 64792fdbe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"minus-circle-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-thin.imageset/Contents.json deleted file mode 100644 index 9c2f638d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"minus-circle-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle.imageset/Contents.json deleted file mode 100644 index 7ec72baf0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"minus-circle.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-duotone.imageset/Contents.json deleted file mode 100644 index 9d4cc0a9d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"minus-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-fill.imageset/Contents.json deleted file mode 100644 index 5a6f7af0f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"minus-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-light.imageset/Contents.json deleted file mode 100644 index a946c5b5c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"minus-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-bold.imageset/Contents.json deleted file mode 100644 index 2418555f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"minus-square-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-duotone.imageset/Contents.json deleted file mode 100644 index c8c6447af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"minus-square-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-fill.imageset/Contents.json deleted file mode 100644 index ad82fdce8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"minus-square-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-light.imageset/Contents.json deleted file mode 100644 index 6f6774f5b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"minus-square-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-thin.imageset/Contents.json deleted file mode 100644 index a4cde3fd0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"minus-square-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square.imageset/Contents.json deleted file mode 100644 index 4f58a7cb8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"minus-square.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-thin.imageset/Contents.json deleted file mode 100644 index c71fd3fc8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"minus-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus.imageset/Contents.json deleted file mode 100644 index ddb6c5037..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"minus.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-bold.imageset/Contents.json deleted file mode 100644 index 16f9f141c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"money-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-duotone.imageset/Contents.json deleted file mode 100644 index 6b3bfb2fa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"money-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-fill.imageset/Contents.json deleted file mode 100644 index 81d2ac819..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"money-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-light.imageset/Contents.json deleted file mode 100644 index ff2c1f54d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"money-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-thin.imageset/Contents.json deleted file mode 100644 index d12544afa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"money-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-bold.imageset/Contents.json deleted file mode 100644 index 21540e295..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"money-wavy-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-duotone.imageset/Contents.json deleted file mode 100644 index 9c2760ed5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"money-wavy-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-fill.imageset/Contents.json deleted file mode 100644 index 18fc52491..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"money-wavy-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-light.imageset/Contents.json deleted file mode 100644 index 6650217d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"money-wavy-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-thin.imageset/Contents.json deleted file mode 100644 index 7276ce74a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"money-wavy-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy.imageset/Contents.json deleted file mode 100644 index 562b76c4c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"money-wavy.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money.imageset/Contents.json deleted file mode 100644 index cd46cf068..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"money.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-bold.imageset/Contents.json deleted file mode 100644 index 4e36fd616..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"monitor-arrow-up-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-duotone.imageset/Contents.json deleted file mode 100644 index 97eb9e359..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"monitor-arrow-up-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-fill.imageset/Contents.json deleted file mode 100644 index 331736fe8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"monitor-arrow-up-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-light.imageset/Contents.json deleted file mode 100644 index 3889b0679..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"monitor-arrow-up-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-thin.imageset/Contents.json deleted file mode 100644 index 851620321..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"monitor-arrow-up-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up.imageset/Contents.json deleted file mode 100644 index 7c7817199..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"monitor-arrow-up.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-bold.imageset/Contents.json deleted file mode 100644 index e8b16306d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"monitor-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-duotone.imageset/Contents.json deleted file mode 100644 index 999800532..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"monitor-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-fill.imageset/Contents.json deleted file mode 100644 index caf4a471f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"monitor-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-light.imageset/Contents.json deleted file mode 100644 index a4890b4eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"monitor-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-bold.imageset/Contents.json deleted file mode 100644 index bbb67ccc5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"monitor-play-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-duotone.imageset/Contents.json deleted file mode 100644 index 8525d3389..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"monitor-play-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-fill.imageset/Contents.json deleted file mode 100644 index 08f61a291..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"monitor-play-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-light.imageset/Contents.json deleted file mode 100644 index 5730c7895..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"monitor-play-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-thin.imageset/Contents.json deleted file mode 100644 index 139167362..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"monitor-play-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play.imageset/Contents.json deleted file mode 100644 index 48dc3adc8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"monitor-play.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-thin.imageset/Contents.json deleted file mode 100644 index a45ac2e21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"monitor-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor.imageset/Contents.json deleted file mode 100644 index 5f7a5d8fd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"monitor.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-bold.imageset/Contents.json deleted file mode 100644 index 03992e65b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"moon-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-duotone.imageset/Contents.json deleted file mode 100644 index 945ad04f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"moon-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-fill.imageset/Contents.json deleted file mode 100644 index 74d92f238..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"moon-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-light.imageset/Contents.json deleted file mode 100644 index b106589d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"moon-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-bold.imageset/Contents.json deleted file mode 100644 index 69bb0fc04..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"moon-stars-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-duotone.imageset/Contents.json deleted file mode 100644 index 94598ff95..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"moon-stars-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-fill.imageset/Contents.json deleted file mode 100644 index b32dfdf02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"moon-stars-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-light.imageset/Contents.json deleted file mode 100644 index 4206725d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"moon-stars-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-thin.imageset/Contents.json deleted file mode 100644 index 7d53ee61d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"moon-stars-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars.imageset/Contents.json deleted file mode 100644 index e4f0b5e42..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"moon-stars.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-thin.imageset/Contents.json deleted file mode 100644 index a497b4fa8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"moon-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon.imageset/Contents.json deleted file mode 100644 index 417ba512a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"moon.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-bold.imageset/Contents.json deleted file mode 100644 index 7170e4964..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"moped-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-duotone.imageset/Contents.json deleted file mode 100644 index 4fe0cf81d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"moped-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-fill.imageset/Contents.json deleted file mode 100644 index 314ac5d7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"moped-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-bold.imageset/Contents.json deleted file mode 100644 index f45629388..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"moped-front-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-duotone.imageset/Contents.json deleted file mode 100644 index b646d0862..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"moped-front-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-fill.imageset/Contents.json deleted file mode 100644 index 1528916f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"moped-front-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-light.imageset/Contents.json deleted file mode 100644 index f8f98d51b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"moped-front-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-thin.imageset/Contents.json deleted file mode 100644 index c154fdb8c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"moped-front-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front.imageset/Contents.json deleted file mode 100644 index 3152feab1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"moped-front.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-light.imageset/Contents.json deleted file mode 100644 index 90b15f365..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"moped-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-thin.imageset/Contents.json deleted file mode 100644 index 98963cb62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"moped-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped.imageset/Contents.json deleted file mode 100644 index 66e64711f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"moped.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-bold.imageset/Contents.json deleted file mode 100644 index 7d565528c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"mosque-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-duotone.imageset/Contents.json deleted file mode 100644 index 3bd21bd46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"mosque-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-fill.imageset/Contents.json deleted file mode 100644 index 0569c51ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mosque-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-light.imageset/Contents.json deleted file mode 100644 index a7e2f8008..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"mosque-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-thin.imageset/Contents.json deleted file mode 100644 index 647a96176..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"mosque-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque.imageset/Contents.json deleted file mode 100644 index e18d634a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"mosque.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-bold.imageset/Contents.json deleted file mode 100644 index d79cb5398..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"motorcycle-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-duotone.imageset/Contents.json deleted file mode 100644 index 793600b1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"motorcycle-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-fill.imageset/Contents.json deleted file mode 100644 index 7f61d12b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"motorcycle-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-light.imageset/Contents.json deleted file mode 100644 index 9af63cb49..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"motorcycle-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-thin.imageset/Contents.json deleted file mode 100644 index 6be6a364b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"motorcycle-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle.imageset/Contents.json deleted file mode 100644 index de9ca3834..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"motorcycle.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-bold.imageset/Contents.json deleted file mode 100644 index 73fc3f863..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"mountains-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-duotone.imageset/Contents.json deleted file mode 100644 index 71d043ce0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"mountains-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-fill.imageset/Contents.json deleted file mode 100644 index 69bedfb50..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"mountains-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-light.imageset/Contents.json deleted file mode 100644 index 41d6dd0bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"mountains-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-thin.imageset/Contents.json deleted file mode 100644 index 8874685b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"mountains-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains.imageset/Contents.json deleted file mode 100644 index cad716206..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"mountains.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-bold.imageset/Contents.json deleted file mode 100644 index 930eadfca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mouse-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-duotone.imageset/Contents.json deleted file mode 100644 index a73996fa8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mouse-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-fill.imageset/Contents.json deleted file mode 100644 index 116525aa6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"mouse-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-bold.imageset/Contents.json deleted file mode 100644 index 5f0232936..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"mouse-left-click-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-duotone.imageset/Contents.json deleted file mode 100644 index 0d80169d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"mouse-left-click-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-fill.imageset/Contents.json deleted file mode 100644 index e4baf6fab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"mouse-left-click-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-light.imageset/Contents.json deleted file mode 100644 index 5857325fa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mouse-left-click-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-thin.imageset/Contents.json deleted file mode 100644 index 4542001ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"mouse-left-click-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click.imageset/Contents.json deleted file mode 100644 index 8af003b96..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"mouse-left-click.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-light.imageset/Contents.json deleted file mode 100644 index 73935b064..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mouse-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-bold.imageset/Contents.json deleted file mode 100644 index ee3089236..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"mouse-middle-click-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-duotone.imageset/Contents.json deleted file mode 100644 index 90b311999..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"mouse-middle-click-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-fill.imageset/Contents.json deleted file mode 100644 index 91d3d4146..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mouse-middle-click-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-light.imageset/Contents.json deleted file mode 100644 index 086267584..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mouse-middle-click-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-thin.imageset/Contents.json deleted file mode 100644 index d27597166..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"mouse-middle-click-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click.imageset/Contents.json deleted file mode 100644 index 127d82cfe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"mouse-middle-click.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-bold.imageset/Contents.json deleted file mode 100644 index 30cb02d23..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"mouse-right-click-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-duotone.imageset/Contents.json deleted file mode 100644 index 90267898a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"mouse-right-click-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-fill.imageset/Contents.json deleted file mode 100644 index 7ec6f8f2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"mouse-right-click-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-light.imageset/Contents.json deleted file mode 100644 index 1d56b59a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"mouse-right-click-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-thin.imageset/Contents.json deleted file mode 100644 index 122a41013..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mouse-right-click-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click.imageset/Contents.json deleted file mode 100644 index 8db422a89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"mouse-right-click.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-bold.imageset/Contents.json deleted file mode 100644 index fd7eefcdd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mouse-scroll-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-duotone.imageset/Contents.json deleted file mode 100644 index f9db0894b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"mouse-scroll-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-fill.imageset/Contents.json deleted file mode 100644 index 3c5daa5b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"mouse-scroll-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-light.imageset/Contents.json deleted file mode 100644 index 1af2ed421..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"mouse-scroll-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-thin.imageset/Contents.json deleted file mode 100644 index b4ebc9315..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"mouse-scroll-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll.imageset/Contents.json deleted file mode 100644 index 03d700841..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mouse-scroll.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-bold.imageset/Contents.json deleted file mode 100644 index d4a5e80f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"mouse-simple-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-duotone.imageset/Contents.json deleted file mode 100644 index b4ccad08b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"mouse-simple-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-fill.imageset/Contents.json deleted file mode 100644 index db3f2e73d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"mouse-simple-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-light.imageset/Contents.json deleted file mode 100644 index 20894cf12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"mouse-simple-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-thin.imageset/Contents.json deleted file mode 100644 index 6aa6ccdee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"mouse-simple-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple.imageset/Contents.json deleted file mode 100644 index d968c97e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"mouse-simple.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-thin.imageset/Contents.json deleted file mode 100644 index c085749eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"mouse-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse.imageset/Contents.json deleted file mode 100644 index 834f1a877..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"mouse.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-bold.imageset/Contents.json deleted file mode 100644 index b946c4265..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"music-note-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-duotone.imageset/Contents.json deleted file mode 100644 index 822b45147..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"music-note-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-fill.imageset/Contents.json deleted file mode 100644 index 007371063..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"music-note-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-light.imageset/Contents.json deleted file mode 100644 index ebc509ced..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"music-note-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-bold.imageset/Contents.json deleted file mode 100644 index aa55c025b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"music-note-simple-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-duotone.imageset/Contents.json deleted file mode 100644 index 52955f509..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"music-note-simple-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-fill.imageset/Contents.json deleted file mode 100644 index c89f30d6f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"music-note-simple-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-light.imageset/Contents.json deleted file mode 100644 index e860ec2df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"music-note-simple-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-thin.imageset/Contents.json deleted file mode 100644 index ebb461ac4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"music-note-simple-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple.imageset/Contents.json deleted file mode 100644 index 12504368f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"music-note-simple.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-thin.imageset/Contents.json deleted file mode 100644 index cc2a639f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"music-note-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note.imageset/Contents.json deleted file mode 100644 index 17ddcff3a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"music-note.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-bold.imageset/Contents.json deleted file mode 100644 index db8feef1e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"music-notes-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-duotone.imageset/Contents.json deleted file mode 100644 index 0d1c17b66..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"music-notes-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-fill.imageset/Contents.json deleted file mode 100644 index dbd7b947c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"music-notes-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-light.imageset/Contents.json deleted file mode 100644 index 272f2aefd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"music-notes-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-bold.imageset/Contents.json deleted file mode 100644 index 1e9e8bd75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"music-notes-minus-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-duotone.imageset/Contents.json deleted file mode 100644 index c3e2f2a7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"music-notes-minus-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-fill.imageset/Contents.json deleted file mode 100644 index 07a14c4fd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"music-notes-minus-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-light.imageset/Contents.json deleted file mode 100644 index fac1aed76..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"music-notes-minus-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-thin.imageset/Contents.json deleted file mode 100644 index 2208352cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"music-notes-minus-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus.imageset/Contents.json deleted file mode 100644 index 2cd19944e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"music-notes-minus.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-bold.imageset/Contents.json deleted file mode 100644 index e2fb38034..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"music-notes-plus-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-duotone.imageset/Contents.json deleted file mode 100644 index a4fae5b55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"music-notes-plus-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-fill.imageset/Contents.json deleted file mode 100644 index 3474c9a81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"music-notes-plus-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-light.imageset/Contents.json deleted file mode 100644 index 7b2cf1b65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"music-notes-plus-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-thin.imageset/Contents.json deleted file mode 100644 index 967d6809d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"music-notes-plus-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus.imageset/Contents.json deleted file mode 100644 index a70f02f1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"music-notes-plus.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-bold.imageset/Contents.json deleted file mode 100644 index 5fedd8fb4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"music-notes-simple-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-duotone.imageset/Contents.json deleted file mode 100644 index 8965db352..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"music-notes-simple-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-fill.imageset/Contents.json deleted file mode 100644 index 988bda326..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"music-notes-simple-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-light.imageset/Contents.json deleted file mode 100644 index 5220656a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"music-notes-simple-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-thin.imageset/Contents.json deleted file mode 100644 index 5336d0f8b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"music-notes-simple-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple.imageset/Contents.json deleted file mode 100644 index eec32607c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"music-notes-simple.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-thin.imageset/Contents.json deleted file mode 100644 index 39b7ed714..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"music-notes-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes.imageset/Contents.json deleted file mode 100644 index 6097132e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"music-notes.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-bold.imageset/Contents.json deleted file mode 100644 index df63da1ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"navigation-arrow-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-duotone.imageset/Contents.json deleted file mode 100644 index 5680e035c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"navigation-arrow-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-fill.imageset/Contents.json deleted file mode 100644 index 33940b8eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"navigation-arrow-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-light.imageset/Contents.json deleted file mode 100644 index c63333fd3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"navigation-arrow-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-thin.imageset/Contents.json deleted file mode 100644 index b5e85765d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"navigation-arrow-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow.imageset/Contents.json deleted file mode 100644 index 159675269..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"navigation-arrow.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-bold.imageset/Contents.json deleted file mode 100644 index e38078eb2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"needle-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-duotone.imageset/Contents.json deleted file mode 100644 index 8ff616ef8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"needle-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-fill.imageset/Contents.json deleted file mode 100644 index 7202eb86f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"needle-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-light.imageset/Contents.json deleted file mode 100644 index a847743dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"needle-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-thin.imageset/Contents.json deleted file mode 100644 index 22e9d9327..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"needle-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle.imageset/Contents.json deleted file mode 100644 index 0f0344b80..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"needle.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-bold.imageset/Contents.json deleted file mode 100644 index 3903315b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"network-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-duotone.imageset/Contents.json deleted file mode 100644 index b220c5d6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"network-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-fill.imageset/Contents.json deleted file mode 100644 index 0959e86a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"network-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-light.imageset/Contents.json deleted file mode 100644 index 12d580826..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"network-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-bold.imageset/Contents.json deleted file mode 100644 index 1b360de75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"network-slash-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-duotone.imageset/Contents.json deleted file mode 100644 index aadf3b2a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"network-slash-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-fill.imageset/Contents.json deleted file mode 100644 index d1e4f6f88..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"network-slash-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-light.imageset/Contents.json deleted file mode 100644 index dfcb16791..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"network-slash-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-thin.imageset/Contents.json deleted file mode 100644 index 1cdcf6060..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"network-slash-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash.imageset/Contents.json deleted file mode 100644 index ef97088f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"network-slash.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-thin.imageset/Contents.json deleted file mode 100644 index 8af40f392..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"network-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-bold.imageset/Contents.json deleted file mode 100644 index d25aee57c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"network-x-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-duotone.imageset/Contents.json deleted file mode 100644 index 5c488457d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"network-x-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-fill.imageset/Contents.json deleted file mode 100644 index 3113424cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"network-x-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-light.imageset/Contents.json deleted file mode 100644 index 1bf56935a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"network-x-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-thin.imageset/Contents.json deleted file mode 100644 index bd1f90985..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"network-x-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x.imageset/Contents.json deleted file mode 100644 index 87592df0e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"network-x.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network.imageset/Contents.json deleted file mode 100644 index 2eb869383..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"network.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-bold.imageset/Contents.json deleted file mode 100644 index 2323c6d0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"newspaper-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-bold.imageset/Contents.json deleted file mode 100644 index 2fb448917..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"newspaper-clipping-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-duotone.imageset/Contents.json deleted file mode 100644 index 2dd144bf3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"newspaper-clipping-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-fill.imageset/Contents.json deleted file mode 100644 index 4cb997065..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"newspaper-clipping-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-light.imageset/Contents.json deleted file mode 100644 index 76cd30681..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"newspaper-clipping-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-thin.imageset/Contents.json deleted file mode 100644 index cc5588c7a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"newspaper-clipping-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping.imageset/Contents.json deleted file mode 100644 index 7858e7734..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"newspaper-clipping.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-duotone.imageset/Contents.json deleted file mode 100644 index 19015862f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"newspaper-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-fill.imageset/Contents.json deleted file mode 100644 index 33b23c61e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"newspaper-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-light.imageset/Contents.json deleted file mode 100644 index 2d3ca2a82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"newspaper-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-thin.imageset/Contents.json deleted file mode 100644 index 426de69a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"newspaper-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper.imageset/Contents.json deleted file mode 100644 index 9373e480b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"newspaper.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-bold.imageset/Contents.json deleted file mode 100644 index 04c853648..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"not-equals-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-duotone.imageset/Contents.json deleted file mode 100644 index f0acc64dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"not-equals-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-fill.imageset/Contents.json deleted file mode 100644 index 7d3b3d449..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"not-equals-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-light.imageset/Contents.json deleted file mode 100644 index 277556b8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"not-equals-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-thin.imageset/Contents.json deleted file mode 100644 index 48534a614..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"not-equals-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals.imageset/Contents.json deleted file mode 100644 index d21c32fc6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"not-equals.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-bold.imageset/Contents.json deleted file mode 100644 index 2b4bb6809..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"not-member-of-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-duotone.imageset/Contents.json deleted file mode 100644 index 60abb0990..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"not-member-of-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-fill.imageset/Contents.json deleted file mode 100644 index 625bb0e38..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"not-member-of-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-light.imageset/Contents.json deleted file mode 100644 index 004cb259a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"not-member-of-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-thin.imageset/Contents.json deleted file mode 100644 index 6be41d114..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"not-member-of-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of.imageset/Contents.json deleted file mode 100644 index 1f4391405..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"not-member-of.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-bold.imageset/Contents.json deleted file mode 100644 index f6c388658..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"not-subset-of-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-duotone.imageset/Contents.json deleted file mode 100644 index 0e81d6e25..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"not-subset-of-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-fill.imageset/Contents.json deleted file mode 100644 index 91ba8f906..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"not-subset-of-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-light.imageset/Contents.json deleted file mode 100644 index 9c4d160bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"not-subset-of-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-thin.imageset/Contents.json deleted file mode 100644 index f206b7020..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"not-subset-of-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of.imageset/Contents.json deleted file mode 100644 index b7d04c197..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"not-subset-of.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-bold.imageset/Contents.json deleted file mode 100644 index d3179898c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"not-superset-of-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-duotone.imageset/Contents.json deleted file mode 100644 index 6557d23f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"not-superset-of-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-fill.imageset/Contents.json deleted file mode 100644 index 547a45baf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"not-superset-of-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-light.imageset/Contents.json deleted file mode 100644 index 73e99d820..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"not-superset-of-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-thin.imageset/Contents.json deleted file mode 100644 index 80a6a3a46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"not-superset-of-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of.imageset/Contents.json deleted file mode 100644 index af39fb769..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"not-superset-of.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-bold.imageset/Contents.json deleted file mode 100644 index 90001cde4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"notches-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-duotone.imageset/Contents.json deleted file mode 100644 index d92191dab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"notches-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-fill.imageset/Contents.json deleted file mode 100644 index 26212ef9c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"notches-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-light.imageset/Contents.json deleted file mode 100644 index ffcdf7ab5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"notches-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-thin.imageset/Contents.json deleted file mode 100644 index 906c89834..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"notches-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches.imageset/Contents.json deleted file mode 100644 index 6d49080ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"notches.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-bold.imageset/Contents.json deleted file mode 100644 index 56addcd38..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"note-blank-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-duotone.imageset/Contents.json deleted file mode 100644 index 996089201..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"note-blank-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-fill.imageset/Contents.json deleted file mode 100644 index a9efcc117..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"note-blank-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-light.imageset/Contents.json deleted file mode 100644 index 9ce21fe17..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"note-blank-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-thin.imageset/Contents.json deleted file mode 100644 index b2da378e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"note-blank-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank.imageset/Contents.json deleted file mode 100644 index 4d1f07115..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"note-blank.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-bold.imageset/Contents.json deleted file mode 100644 index 171ce2d7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"note-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-duotone.imageset/Contents.json deleted file mode 100644 index 3e1f1b17a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"note-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-fill.imageset/Contents.json deleted file mode 100644 index 3f65b25cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"note-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-light.imageset/Contents.json deleted file mode 100644 index 7494728c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"note-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-bold.imageset/Contents.json deleted file mode 100644 index a682337ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"note-pencil-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-duotone.imageset/Contents.json deleted file mode 100644 index bb3d40d9a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"note-pencil-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-fill.imageset/Contents.json deleted file mode 100644 index 42853c46f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"note-pencil-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-light.imageset/Contents.json deleted file mode 100644 index 5fa741bde..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"note-pencil-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-thin.imageset/Contents.json deleted file mode 100644 index bcc5ac9d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"note-pencil-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil.imageset/Contents.json deleted file mode 100644 index b476c8090..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"note-pencil.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-thin.imageset/Contents.json deleted file mode 100644 index 9af598fdf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"note-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note.imageset/Contents.json deleted file mode 100644 index e37b98eee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"note.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-bold.imageset/Contents.json deleted file mode 100644 index c1e1aa089..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"notebook-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-duotone.imageset/Contents.json deleted file mode 100644 index 3893166ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"notebook-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-fill.imageset/Contents.json deleted file mode 100644 index ab1f6aff7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"notebook-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-light.imageset/Contents.json deleted file mode 100644 index 3f63a0d57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"notebook-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-thin.imageset/Contents.json deleted file mode 100644 index 362a015a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"notebook-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook.imageset/Contents.json deleted file mode 100644 index d55ae4306..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"notebook.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-bold.imageset/Contents.json deleted file mode 100644 index 1d8508d26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"notepad-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-duotone.imageset/Contents.json deleted file mode 100644 index 61aaaa99f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"notepad-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-fill.imageset/Contents.json deleted file mode 100644 index 6bbd08726..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"notepad-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-light.imageset/Contents.json deleted file mode 100644 index 120430170..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"notepad-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-thin.imageset/Contents.json deleted file mode 100644 index a3d58f3b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"notepad-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad.imageset/Contents.json deleted file mode 100644 index 33c49ef4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"notepad.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-bold.imageset/Contents.json deleted file mode 100644 index c79eb1f9f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"notification-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-duotone.imageset/Contents.json deleted file mode 100644 index 7d4ab4cf1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"notification-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-fill.imageset/Contents.json deleted file mode 100644 index ab6f68fed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"notification-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-light.imageset/Contents.json deleted file mode 100644 index c1178d753..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"notification-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-thin.imageset/Contents.json deleted file mode 100644 index bff1c8706..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"notification-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification.imageset/Contents.json deleted file mode 100644 index 7e735dc27..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"notification.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-bold.imageset/Contents.json deleted file mode 100644 index 2632d4650..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"notion-logo-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-duotone.imageset/Contents.json deleted file mode 100644 index d9f6859ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"notion-logo-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-fill.imageset/Contents.json deleted file mode 100644 index 9751a9c46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"notion-logo-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-light.imageset/Contents.json deleted file mode 100644 index 2dff01664..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"notion-logo-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-thin.imageset/Contents.json deleted file mode 100644 index c11d2fec7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"notion-logo-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo.imageset/Contents.json deleted file mode 100644 index fd9accd18..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"notion-logo.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-bold.imageset/Contents.json deleted file mode 100644 index 82f7ad87a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"nuclear-plant-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-duotone.imageset/Contents.json deleted file mode 100644 index e78cd7808..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"nuclear-plant-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-fill.imageset/Contents.json deleted file mode 100644 index 45356a790..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"nuclear-plant-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-light.imageset/Contents.json deleted file mode 100644 index 9ec6a44a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"nuclear-plant-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-thin.imageset/Contents.json deleted file mode 100644 index 884f0e275..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"nuclear-plant-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant.imageset/Contents.json deleted file mode 100644 index 1c83967cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"nuclear-plant.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-bold.imageset/Contents.json deleted file mode 100644 index e4f1f476b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-circle-eight-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-duotone.imageset/Contents.json deleted file mode 100644 index d8d6f8b17..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-circle-eight-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-fill.imageset/Contents.json deleted file mode 100644 index 6bd5eaf0e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"number-circle-eight-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-light.imageset/Contents.json deleted file mode 100644 index 1c028bb44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"number-circle-eight-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-thin.imageset/Contents.json deleted file mode 100644 index 6b7ccd7e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"number-circle-eight-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight.imageset/Contents.json deleted file mode 100644 index 29feefd53..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-circle-eight.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-bold.imageset/Contents.json deleted file mode 100644 index d3c51251b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-circle-five-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-duotone.imageset/Contents.json deleted file mode 100644 index bd50728bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-circle-five-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-fill.imageset/Contents.json deleted file mode 100644 index c7986d6f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-circle-five-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-light.imageset/Contents.json deleted file mode 100644 index 9619d1f9c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-circle-five-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-thin.imageset/Contents.json deleted file mode 100644 index 934bc109d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"number-circle-five-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five.imageset/Contents.json deleted file mode 100644 index 4ade77c44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-circle-five.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-bold.imageset/Contents.json deleted file mode 100644 index 5d8cc9d58..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"number-circle-four-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-duotone.imageset/Contents.json deleted file mode 100644 index a906de42d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-circle-four-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-fill.imageset/Contents.json deleted file mode 100644 index 6c52930b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"number-circle-four-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-light.imageset/Contents.json deleted file mode 100644 index dc91d8927..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-circle-four-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-thin.imageset/Contents.json deleted file mode 100644 index 7ddfe018b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-circle-four-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four.imageset/Contents.json deleted file mode 100644 index d00e2e605..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-circle-four.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-bold.imageset/Contents.json deleted file mode 100644 index 8111e9800..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"number-circle-nine-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-duotone.imageset/Contents.json deleted file mode 100644 index 4afd3eb9a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"number-circle-nine-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-fill.imageset/Contents.json deleted file mode 100644 index 2968f0bd9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-circle-nine-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-light.imageset/Contents.json deleted file mode 100644 index 93088bd11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"number-circle-nine-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-thin.imageset/Contents.json deleted file mode 100644 index 1c4e43308..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-circle-nine-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine.imageset/Contents.json deleted file mode 100644 index 5af498893..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"number-circle-nine.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-bold.imageset/Contents.json deleted file mode 100644 index 671874e94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"number-circle-one-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-duotone.imageset/Contents.json deleted file mode 100644 index e564f133d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-circle-one-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-fill.imageset/Contents.json deleted file mode 100644 index 5b861e665..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"number-circle-one-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-light.imageset/Contents.json deleted file mode 100644 index ee8dab2d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-circle-one-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-thin.imageset/Contents.json deleted file mode 100644 index cd6858329..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-circle-one-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one.imageset/Contents.json deleted file mode 100644 index 43184f5da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-circle-one.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-bold.imageset/Contents.json deleted file mode 100644 index a0b0828c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-circle-seven-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-duotone.imageset/Contents.json deleted file mode 100644 index 688f2872b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-circle-seven-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-fill.imageset/Contents.json deleted file mode 100644 index f3a3b1702..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-circle-seven-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-light.imageset/Contents.json deleted file mode 100644 index 07b3c16ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-circle-seven-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-thin.imageset/Contents.json deleted file mode 100644 index 0ce9559ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-circle-seven-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven.imageset/Contents.json deleted file mode 100644 index d309410e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-circle-seven.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-bold.imageset/Contents.json deleted file mode 100644 index f0596050f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-circle-six-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-duotone.imageset/Contents.json deleted file mode 100644 index 003854d3f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-circle-six-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-fill.imageset/Contents.json deleted file mode 100644 index c544c1993..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-circle-six-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-light.imageset/Contents.json deleted file mode 100644 index 887a84573..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-circle-six-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-thin.imageset/Contents.json deleted file mode 100644 index 1fd01c97c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-circle-six-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six.imageset/Contents.json deleted file mode 100644 index c9f44830c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-circle-six.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-bold.imageset/Contents.json deleted file mode 100644 index 2d7d15086..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-circle-three-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-duotone.imageset/Contents.json deleted file mode 100644 index e451e7bd8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"number-circle-three-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-fill.imageset/Contents.json deleted file mode 100644 index e97ede9bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-circle-three-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-light.imageset/Contents.json deleted file mode 100644 index e0d9e9173..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"number-circle-three-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-thin.imageset/Contents.json deleted file mode 100644 index b9aceaf9f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-circle-three-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three.imageset/Contents.json deleted file mode 100644 index 55239022b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"number-circle-three.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-bold.imageset/Contents.json deleted file mode 100644 index 9b27adc62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"number-circle-two-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-duotone.imageset/Contents.json deleted file mode 100644 index e4b489cd5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-circle-two-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-fill.imageset/Contents.json deleted file mode 100644 index 8d44551c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-circle-two-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-light.imageset/Contents.json deleted file mode 100644 index c4b0ba8bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-circle-two-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-thin.imageset/Contents.json deleted file mode 100644 index 8db26f8f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"number-circle-two-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two.imageset/Contents.json deleted file mode 100644 index 849c761e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-circle-two.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-bold.imageset/Contents.json deleted file mode 100644 index ea19702f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-circle-zero-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-duotone.imageset/Contents.json deleted file mode 100644 index 8d2f905e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-circle-zero-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-fill.imageset/Contents.json deleted file mode 100644 index 571b33c68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-circle-zero-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-light.imageset/Contents.json deleted file mode 100644 index c4885fa01..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"number-circle-zero-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-thin.imageset/Contents.json deleted file mode 100644 index a3a2a40b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-circle-zero-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero.imageset/Contents.json deleted file mode 100644 index 8a3f16fe8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-circle-zero.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-bold.imageset/Contents.json deleted file mode 100644 index 15f4575e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-eight-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-duotone.imageset/Contents.json deleted file mode 100644 index 3f6f4ea22..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-eight-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-fill.imageset/Contents.json deleted file mode 100644 index d833f4ffc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-eight-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-light.imageset/Contents.json deleted file mode 100644 index 8e29c9837..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-eight-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-thin.imageset/Contents.json deleted file mode 100644 index b4693489b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-eight-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight.imageset/Contents.json deleted file mode 100644 index 8d4783720..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-eight.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-bold.imageset/Contents.json deleted file mode 100644 index 50e38d53e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-five-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-duotone.imageset/Contents.json deleted file mode 100644 index 6ba74e555..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"number-five-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-fill.imageset/Contents.json deleted file mode 100644 index 7e74030bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"number-five-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-light.imageset/Contents.json deleted file mode 100644 index 409376942..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-five-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-thin.imageset/Contents.json deleted file mode 100644 index fe6bbeb4a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-five-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five.imageset/Contents.json deleted file mode 100644 index 01aeb394a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-five.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-bold.imageset/Contents.json deleted file mode 100644 index a304946e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-four-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-duotone.imageset/Contents.json deleted file mode 100644 index 0f6a81d6f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-four-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-fill.imageset/Contents.json deleted file mode 100644 index 1815d10cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-four-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-light.imageset/Contents.json deleted file mode 100644 index 8d0d4b0de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-four-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-thin.imageset/Contents.json deleted file mode 100644 index 01f757959..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-four-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four.imageset/Contents.json deleted file mode 100644 index 3cf5f3d85..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-four.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-bold.imageset/Contents.json deleted file mode 100644 index 071ffaf8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"number-nine-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-duotone.imageset/Contents.json deleted file mode 100644 index cb1d5b0bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-nine-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-fill.imageset/Contents.json deleted file mode 100644 index d4cac8521..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-nine-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-light.imageset/Contents.json deleted file mode 100644 index 0732b5f37..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-nine-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-thin.imageset/Contents.json deleted file mode 100644 index 189bca46c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"number-nine-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine.imageset/Contents.json deleted file mode 100644 index 9f5dbf229..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-nine.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-bold.imageset/Contents.json deleted file mode 100644 index 2f481ebab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-one-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-duotone.imageset/Contents.json deleted file mode 100644 index 464f99991..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-one-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-fill.imageset/Contents.json deleted file mode 100644 index fd49a3478..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-one-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-light.imageset/Contents.json deleted file mode 100644 index b2cdef53c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-one-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-thin.imageset/Contents.json deleted file mode 100644 index d341a5972..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-one-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one.imageset/Contents.json deleted file mode 100644 index 5f63dbbe6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"number-one.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-bold.imageset/Contents.json deleted file mode 100644 index d2d699fa5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"number-seven-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-duotone.imageset/Contents.json deleted file mode 100644 index e85dbcacf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"number-seven-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-fill.imageset/Contents.json deleted file mode 100644 index 8c63f76c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-seven-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-light.imageset/Contents.json deleted file mode 100644 index 3a152990d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"number-seven-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-thin.imageset/Contents.json deleted file mode 100644 index be0ff9bc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-seven-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven.imageset/Contents.json deleted file mode 100644 index 8afbe46c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-seven.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-bold.imageset/Contents.json deleted file mode 100644 index 312149929..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-six-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-duotone.imageset/Contents.json deleted file mode 100644 index e6c521e4a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-six-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-fill.imageset/Contents.json deleted file mode 100644 index 80ed8afd1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-six-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-light.imageset/Contents.json deleted file mode 100644 index 87db65b5e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"number-six-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-thin.imageset/Contents.json deleted file mode 100644 index 7418aa483..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-six-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six.imageset/Contents.json deleted file mode 100644 index d674d4746..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"number-six.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-bold.imageset/Contents.json deleted file mode 100644 index fe85220f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"number-square-eight-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-duotone.imageset/Contents.json deleted file mode 100644 index 0febf0d1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"number-square-eight-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-fill.imageset/Contents.json deleted file mode 100644 index cc39da50e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"number-square-eight-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-light.imageset/Contents.json deleted file mode 100644 index acdcf1eb4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-eight-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-thin.imageset/Contents.json deleted file mode 100644 index 25704230b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-square-eight-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight.imageset/Contents.json deleted file mode 100644 index 8368a558a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-square-eight.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-bold.imageset/Contents.json deleted file mode 100644 index cecd4451b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-five-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-duotone.imageset/Contents.json deleted file mode 100644 index ed14250be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"number-square-five-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-fill.imageset/Contents.json deleted file mode 100644 index 01f4b70bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"number-square-five-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-light.imageset/Contents.json deleted file mode 100644 index 321d4bed1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-five-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-thin.imageset/Contents.json deleted file mode 100644 index e71e4a9f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-five-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five.imageset/Contents.json deleted file mode 100644 index f30fbdac5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-square-five.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-bold.imageset/Contents.json deleted file mode 100644 index deda3808e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-square-four-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-duotone.imageset/Contents.json deleted file mode 100644 index c28d56f63..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-square-four-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-fill.imageset/Contents.json deleted file mode 100644 index c641b5797..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"number-square-four-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-light.imageset/Contents.json deleted file mode 100644 index f58db591b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-square-four-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-thin.imageset/Contents.json deleted file mode 100644 index 27837473b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-square-four-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four.imageset/Contents.json deleted file mode 100644 index 29bd6b35b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-square-four.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-bold.imageset/Contents.json deleted file mode 100644 index 19e49d550..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"number-square-nine-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-duotone.imageset/Contents.json deleted file mode 100644 index fd1757e70..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"number-square-nine-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-fill.imageset/Contents.json deleted file mode 100644 index 41cdaa5c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-square-nine-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-light.imageset/Contents.json deleted file mode 100644 index a3f5593ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-nine-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-thin.imageset/Contents.json deleted file mode 100644 index eaa00657b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-square-nine-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine.imageset/Contents.json deleted file mode 100644 index 0941ebb35..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"number-square-nine.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-bold.imageset/Contents.json deleted file mode 100644 index 337d8359d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-one-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-duotone.imageset/Contents.json deleted file mode 100644 index a0ebe1b96..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"number-square-one-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-fill.imageset/Contents.json deleted file mode 100644 index 84e832d7c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-square-one-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-light.imageset/Contents.json deleted file mode 100644 index c6b47f9fd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"number-square-one-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-thin.imageset/Contents.json deleted file mode 100644 index 0b80e2621..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-one-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one.imageset/Contents.json deleted file mode 100644 index caed4bc41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-square-one.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-bold.imageset/Contents.json deleted file mode 100644 index ff53c6a06..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"number-square-seven-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-duotone.imageset/Contents.json deleted file mode 100644 index 894b0e61f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"number-square-seven-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-fill.imageset/Contents.json deleted file mode 100644 index bc77b966d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"number-square-seven-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-light.imageset/Contents.json deleted file mode 100644 index ec9fbb166..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-square-seven-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-thin.imageset/Contents.json deleted file mode 100644 index de44681b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-seven-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven.imageset/Contents.json deleted file mode 100644 index c3ab256a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"number-square-seven.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-bold.imageset/Contents.json deleted file mode 100644 index f9341eb0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"number-square-six-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-duotone.imageset/Contents.json deleted file mode 100644 index 79e33996f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-six-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-fill.imageset/Contents.json deleted file mode 100644 index a6236fe5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-six-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-light.imageset/Contents.json deleted file mode 100644 index ca3dcd18b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"number-square-six-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-thin.imageset/Contents.json deleted file mode 100644 index 98b0772ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-square-six-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six.imageset/Contents.json deleted file mode 100644 index d5905b507..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-square-six.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-bold.imageset/Contents.json deleted file mode 100644 index e7ab418c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-square-three-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-duotone.imageset/Contents.json deleted file mode 100644 index 91e01d9d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-three-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-fill.imageset/Contents.json deleted file mode 100644 index 8948e926b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-three-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-light.imageset/Contents.json deleted file mode 100644 index d048ac9c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-three-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-thin.imageset/Contents.json deleted file mode 100644 index b5404f8e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-square-three-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three.imageset/Contents.json deleted file mode 100644 index 03f8f4f7e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-three.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-bold.imageset/Contents.json deleted file mode 100644 index eb46df06c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-square-two-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-duotone.imageset/Contents.json deleted file mode 100644 index cb80689c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-square-two-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-fill.imageset/Contents.json deleted file mode 100644 index 3e0572503..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-square-two-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-light.imageset/Contents.json deleted file mode 100644 index 01e3085be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-two-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-thin.imageset/Contents.json deleted file mode 100644 index cc8f04c12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-two-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two.imageset/Contents.json deleted file mode 100644 index 510be981d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-two.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-bold.imageset/Contents.json deleted file mode 100644 index 74bc7253a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-square-zero-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-duotone.imageset/Contents.json deleted file mode 100644 index a10c9a7b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-square-zero-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-fill.imageset/Contents.json deleted file mode 100644 index ffd48ba27..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-square-zero-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-light.imageset/Contents.json deleted file mode 100644 index 5de0e6326..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"number-square-zero-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-thin.imageset/Contents.json deleted file mode 100644 index 5443a1bcf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-square-zero-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero.imageset/Contents.json deleted file mode 100644 index dfa845def..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-square-zero.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-bold.imageset/Contents.json deleted file mode 100644 index 27c8097ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-three-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-duotone.imageset/Contents.json deleted file mode 100644 index cb04fad7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-three-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-fill.imageset/Contents.json deleted file mode 100644 index 98c2e5a71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-three-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-light.imageset/Contents.json deleted file mode 100644 index 6c7c0795f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"number-three-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-thin.imageset/Contents.json deleted file mode 100644 index 96f323e46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-three-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three.imageset/Contents.json deleted file mode 100644 index 8335e39ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-three.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-bold.imageset/Contents.json deleted file mode 100644 index 5f4eebf9c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"number-two-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-duotone.imageset/Contents.json deleted file mode 100644 index f13b268c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-two-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-fill.imageset/Contents.json deleted file mode 100644 index 72717f623..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-two-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-light.imageset/Contents.json deleted file mode 100644 index 836936c95..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"number-two-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-thin.imageset/Contents.json deleted file mode 100644 index cf9df06f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-two-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two.imageset/Contents.json deleted file mode 100644 index c4ae7a28a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-two.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-bold.imageset/Contents.json deleted file mode 100644 index 804459977..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"number-zero-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-duotone.imageset/Contents.json deleted file mode 100644 index ca932831e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"number-zero-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-fill.imageset/Contents.json deleted file mode 100644 index 0e017a569..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"number-zero-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-light.imageset/Contents.json deleted file mode 100644 index f0e0d6c61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"number-zero-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-thin.imageset/Contents.json deleted file mode 100644 index a4b67021a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-zero-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero.imageset/Contents.json deleted file mode 100644 index 0ad25dad1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"number-zero.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-bold.imageset/Contents.json deleted file mode 100644 index 2411e7343..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"numpad-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-duotone.imageset/Contents.json deleted file mode 100644 index 9c046a227..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"numpad-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-fill.imageset/Contents.json deleted file mode 100644 index 9d88e1d61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"numpad-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-light.imageset/Contents.json deleted file mode 100644 index e9898beac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"numpad-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-thin.imageset/Contents.json deleted file mode 100644 index 5c73ed111..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"numpad-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad.imageset/Contents.json deleted file mode 100644 index 4a10a5976..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"numpad.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-bold.imageset/Contents.json deleted file mode 100644 index e806cd1bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"nut-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-duotone.imageset/Contents.json deleted file mode 100644 index d2faf4bc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"nut-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-fill.imageset/Contents.json deleted file mode 100644 index 164d58ad8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"nut-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-light.imageset/Contents.json deleted file mode 100644 index 632c09689..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"nut-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-thin.imageset/Contents.json deleted file mode 100644 index aadd32f6e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"nut-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut.imageset/Contents.json deleted file mode 100644 index 6a92ff975..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"nut.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-bold.imageset/Contents.json deleted file mode 100644 index 5e9698ea1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"ny-times-logo-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-duotone.imageset/Contents.json deleted file mode 100644 index a670c7fc0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"ny-times-logo-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-fill.imageset/Contents.json deleted file mode 100644 index 8dff27785..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"ny-times-logo-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-light.imageset/Contents.json deleted file mode 100644 index 1add25486..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"ny-times-logo-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-thin.imageset/Contents.json deleted file mode 100644 index 174f5ef8c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"ny-times-logo-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo.imageset/Contents.json deleted file mode 100644 index d3b76fc08..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"ny-times-logo.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-bold.imageset/Contents.json deleted file mode 100644 index 9ae28abef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"octagon-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-duotone.imageset/Contents.json deleted file mode 100644 index dad00206b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"octagon-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-fill.imageset/Contents.json deleted file mode 100644 index a9cd1d095..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"octagon-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-light.imageset/Contents.json deleted file mode 100644 index a4b6a9c92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"octagon-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-thin.imageset/Contents.json deleted file mode 100644 index 6c079427d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"octagon-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon.imageset/Contents.json deleted file mode 100644 index 92da015bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"octagon.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-bold.imageset/Contents.json deleted file mode 100644 index 7f83328b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"office-chair-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-duotone.imageset/Contents.json deleted file mode 100644 index a7c0010d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"office-chair-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-fill.imageset/Contents.json deleted file mode 100644 index 137ba2ac2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"office-chair-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-light.imageset/Contents.json deleted file mode 100644 index 2d78bc7b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"office-chair-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-thin.imageset/Contents.json deleted file mode 100644 index 814206393..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"office-chair-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair.imageset/Contents.json deleted file mode 100644 index 2f142f711..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"office-chair.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-bold.imageset/Contents.json deleted file mode 100644 index fe3729308..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"onigiri-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-duotone.imageset/Contents.json deleted file mode 100644 index 273a2179b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"onigiri-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-fill.imageset/Contents.json deleted file mode 100644 index f0d56021f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"onigiri-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-light.imageset/Contents.json deleted file mode 100644 index ed1c5b906..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"onigiri-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-thin.imageset/Contents.json deleted file mode 100644 index 90d000235..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"onigiri-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri.imageset/Contents.json deleted file mode 100644 index a03b77302..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"onigiri.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-bold.imageset/Contents.json deleted file mode 100644 index b2a0dce1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"open-ai-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-duotone.imageset/Contents.json deleted file mode 100644 index 9d1f3a17f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"open-ai-logo-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-fill.imageset/Contents.json deleted file mode 100644 index 40b0fe97d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"open-ai-logo-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-light.imageset/Contents.json deleted file mode 100644 index 0743d67e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"open-ai-logo-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-thin.imageset/Contents.json deleted file mode 100644 index 4aad59761..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"open-ai-logo-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo.imageset/Contents.json deleted file mode 100644 index 39da86fdf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"open-ai-logo.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-bold.imageset/Contents.json deleted file mode 100644 index 28e420212..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"option-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-duotone.imageset/Contents.json deleted file mode 100644 index fc06bce07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"option-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-fill.imageset/Contents.json deleted file mode 100644 index 108c651f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"option-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-light.imageset/Contents.json deleted file mode 100644 index 8bfd453fd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"option-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-thin.imageset/Contents.json deleted file mode 100644 index a24b657f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"option-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option.imageset/Contents.json deleted file mode 100644 index cbeaf60c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"option.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-bold.imageset/Contents.json deleted file mode 100644 index bbc6e7e2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"orange-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-duotone.imageset/Contents.json deleted file mode 100644 index 9d9143e54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"orange-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-fill.imageset/Contents.json deleted file mode 100644 index 7c41d4313..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"orange-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-light.imageset/Contents.json deleted file mode 100644 index 3b94d9a3b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"orange-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-bold.imageset/Contents.json deleted file mode 100644 index d9274f50f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"orange-slice-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-duotone.imageset/Contents.json deleted file mode 100644 index 157382165..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"orange-slice-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-fill.imageset/Contents.json deleted file mode 100644 index 68f7e61bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"orange-slice-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-light.imageset/Contents.json deleted file mode 100644 index 651ebfab5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"orange-slice-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-thin.imageset/Contents.json deleted file mode 100644 index c2fef834d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"orange-slice-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice.imageset/Contents.json deleted file mode 100644 index 3d94ea248..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"orange-slice.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-thin.imageset/Contents.json deleted file mode 100644 index f0b82bc8a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"orange-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange.imageset/Contents.json deleted file mode 100644 index 6f1201a0e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"orange.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-bold.imageset/Contents.json deleted file mode 100644 index 1bd47a717..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"oven-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-duotone.imageset/Contents.json deleted file mode 100644 index 716438d13..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"oven-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-fill.imageset/Contents.json deleted file mode 100644 index 1d919d867..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"oven-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-light.imageset/Contents.json deleted file mode 100644 index efb1ab94a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"oven-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-thin.imageset/Contents.json deleted file mode 100644 index 450ea3c44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"oven-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven.imageset/Contents.json deleted file mode 100644 index e5104337b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"oven.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-bold.imageset/Contents.json deleted file mode 100644 index 918e0e4b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"package-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-duotone.imageset/Contents.json deleted file mode 100644 index 466713ed5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"package-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-fill.imageset/Contents.json deleted file mode 100644 index 363967b68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"package-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-light.imageset/Contents.json deleted file mode 100644 index 8171d752f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"package-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-thin.imageset/Contents.json deleted file mode 100644 index d33f64400..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"package-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package.imageset/Contents.json deleted file mode 100644 index b6daf194d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"package.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-bold.imageset/Contents.json deleted file mode 100644 index 524bd9ac6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"paint-brush-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-bold.imageset/Contents.json deleted file mode 100644 index 0d6ff91d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paint-brush-broad-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-duotone.imageset/Contents.json deleted file mode 100644 index 3c1691472..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"paint-brush-broad-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-fill.imageset/Contents.json deleted file mode 100644 index ee9fa4d09..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"paint-brush-broad-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-light.imageset/Contents.json deleted file mode 100644 index 5b23a0787..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paint-brush-broad-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-thin.imageset/Contents.json deleted file mode 100644 index f556155b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"paint-brush-broad-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad.imageset/Contents.json deleted file mode 100644 index 81178efb0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paint-brush-broad.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-duotone.imageset/Contents.json deleted file mode 100644 index 7a0328f06..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paint-brush-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-fill.imageset/Contents.json deleted file mode 100644 index 23663ed58..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"paint-brush-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-bold.imageset/Contents.json deleted file mode 100644 index 87bdd1ac4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"paint-brush-household-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-duotone.imageset/Contents.json deleted file mode 100644 index 5bb11504b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"paint-brush-household-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-fill.imageset/Contents.json deleted file mode 100644 index faa507c0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"paint-brush-household-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-light.imageset/Contents.json deleted file mode 100644 index 7dfea849e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"paint-brush-household-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-thin.imageset/Contents.json deleted file mode 100644 index d045f13f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paint-brush-household-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household.imageset/Contents.json deleted file mode 100644 index 3ea0e0b84..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"paint-brush-household.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-light.imageset/Contents.json deleted file mode 100644 index c04ff695b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"paint-brush-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-thin.imageset/Contents.json deleted file mode 100644 index 903f9e194..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paint-brush-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush.imageset/Contents.json deleted file mode 100644 index 3504832eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paint-brush.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-bold.imageset/Contents.json deleted file mode 100644 index 7ae760ce1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paint-bucket-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-duotone.imageset/Contents.json deleted file mode 100644 index d542774cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paint-bucket-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-fill.imageset/Contents.json deleted file mode 100644 index a6fec1a99..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"paint-bucket-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-light.imageset/Contents.json deleted file mode 100644 index 8a2f32934..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"paint-bucket-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-thin.imageset/Contents.json deleted file mode 100644 index 5ec3041e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paint-bucket-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket.imageset/Contents.json deleted file mode 100644 index 17d451e2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"paint-bucket.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-bold.imageset/Contents.json deleted file mode 100644 index 42c1ef1f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"paint-roller-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-duotone.imageset/Contents.json deleted file mode 100644 index ae7d9e646..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"paint-roller-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-fill.imageset/Contents.json deleted file mode 100644 index f6efb5940..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paint-roller-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-light.imageset/Contents.json deleted file mode 100644 index e04d57c0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paint-roller-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-thin.imageset/Contents.json deleted file mode 100644 index 7aceab2ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"paint-roller-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller.imageset/Contents.json deleted file mode 100644 index 3d8a7225a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"paint-roller.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-bold.imageset/Contents.json deleted file mode 100644 index 92b42cc7a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"palette-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-duotone.imageset/Contents.json deleted file mode 100644 index 4e8bf1be2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"palette-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-fill.imageset/Contents.json deleted file mode 100644 index be6194dff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"palette-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-light.imageset/Contents.json deleted file mode 100644 index 3224b6a1e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"palette-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-thin.imageset/Contents.json deleted file mode 100644 index 371b05495..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"palette-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette.imageset/Contents.json deleted file mode 100644 index d06c8192b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"palette.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-bold.imageset/Contents.json deleted file mode 100644 index 6947f41c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"panorama-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-duotone.imageset/Contents.json deleted file mode 100644 index 053e20a2f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"panorama-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-fill.imageset/Contents.json deleted file mode 100644 index 88454983d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"panorama-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-light.imageset/Contents.json deleted file mode 100644 index 6f688b661..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"panorama-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-thin.imageset/Contents.json deleted file mode 100644 index a8043dbcf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"panorama-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama.imageset/Contents.json deleted file mode 100644 index 6c15e8011..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"panorama.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-bold.imageset/Contents.json deleted file mode 100644 index 1a38bf673..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pants-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-duotone.imageset/Contents.json deleted file mode 100644 index 1446e7b84..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"pants-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-fill.imageset/Contents.json deleted file mode 100644 index e6dcba519..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pants-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-light.imageset/Contents.json deleted file mode 100644 index 80bcaa7c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pants-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-thin.imageset/Contents.json deleted file mode 100644 index ad58ce6ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pants-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants.imageset/Contents.json deleted file mode 100644 index b07cd0b75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pants.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-bold.imageset/Contents.json deleted file mode 100644 index ebd42c24b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"paper-plane-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-duotone.imageset/Contents.json deleted file mode 100644 index 8579a4480..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paper-plane-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-fill.imageset/Contents.json deleted file mode 100644 index 309eb181e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"paper-plane-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-light.imageset/Contents.json deleted file mode 100644 index ac4c5edad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"paper-plane-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-bold.imageset/Contents.json deleted file mode 100644 index 304c7e135..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"paper-plane-right-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-duotone.imageset/Contents.json deleted file mode 100644 index 9a8c98e09..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paper-plane-right-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-fill.imageset/Contents.json deleted file mode 100644 index 417f3228f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"paper-plane-right-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-light.imageset/Contents.json deleted file mode 100644 index f1d4f8bcb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"paper-plane-right-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-thin.imageset/Contents.json deleted file mode 100644 index 44af4c0cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paper-plane-right-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right.imageset/Contents.json deleted file mode 100644 index 8281edb5b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paper-plane-right.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-thin.imageset/Contents.json deleted file mode 100644 index 0d84f27e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paper-plane-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-bold.imageset/Contents.json deleted file mode 100644 index 8611abfa2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"paper-plane-tilt-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-duotone.imageset/Contents.json deleted file mode 100644 index 3782af372..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paper-plane-tilt-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-fill.imageset/Contents.json deleted file mode 100644 index dbff2b131..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"paper-plane-tilt-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-light.imageset/Contents.json deleted file mode 100644 index 58c8a8579..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"paper-plane-tilt-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-thin.imageset/Contents.json deleted file mode 100644 index 4d514dac1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paper-plane-tilt-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt.imageset/Contents.json deleted file mode 100644 index e78d5a87b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paper-plane-tilt.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane.imageset/Contents.json deleted file mode 100644 index 3749f4648..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"paper-plane.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-bold.imageset/Contents.json deleted file mode 100644 index 24921eb68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paperclip-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-duotone.imageset/Contents.json deleted file mode 100644 index a32675e0f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"paperclip-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-fill.imageset/Contents.json deleted file mode 100644 index 4efed841a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"paperclip-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-bold.imageset/Contents.json deleted file mode 100644 index 4822a20d6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"paperclip-horizontal-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-duotone.imageset/Contents.json deleted file mode 100644 index 0268aab3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"paperclip-horizontal-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-fill.imageset/Contents.json deleted file mode 100644 index 9d3b3ef45..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"paperclip-horizontal-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-light.imageset/Contents.json deleted file mode 100644 index e3c336d1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paperclip-horizontal-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-thin.imageset/Contents.json deleted file mode 100644 index b595193d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paperclip-horizontal-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal.imageset/Contents.json deleted file mode 100644 index fe6e891d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paperclip-horizontal.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-light.imageset/Contents.json deleted file mode 100644 index c4e39907a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paperclip-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-thin.imageset/Contents.json deleted file mode 100644 index b5ac83e56..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"paperclip-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip.imageset/Contents.json deleted file mode 100644 index 68d9abb99..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"paperclip.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-bold.imageset/Contents.json deleted file mode 100644 index 70fb861ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"parachute-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-duotone.imageset/Contents.json deleted file mode 100644 index ff674d01e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"parachute-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-fill.imageset/Contents.json deleted file mode 100644 index d12c50736..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"parachute-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-light.imageset/Contents.json deleted file mode 100644 index 25a505e85..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"parachute-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-thin.imageset/Contents.json deleted file mode 100644 index 34fe23097..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"parachute-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute.imageset/Contents.json deleted file mode 100644 index c0276553b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"parachute.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-bold.imageset/Contents.json deleted file mode 100644 index bc1f25da3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paragraph-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-duotone.imageset/Contents.json deleted file mode 100644 index ae1fcac23..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"paragraph-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-fill.imageset/Contents.json deleted file mode 100644 index f91b2e8ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paragraph-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-light.imageset/Contents.json deleted file mode 100644 index d8e90b028..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paragraph-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-thin.imageset/Contents.json deleted file mode 100644 index 44c8d952d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"paragraph-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph.imageset/Contents.json deleted file mode 100644 index e9d0f6b5e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paragraph.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-bold.imageset/Contents.json deleted file mode 100644 index 62c9be797..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"parallelogram-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-duotone.imageset/Contents.json deleted file mode 100644 index d77495aee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"parallelogram-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-fill.imageset/Contents.json deleted file mode 100644 index c4d3e8443..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"parallelogram-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-light.imageset/Contents.json deleted file mode 100644 index 5ebbda427..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"parallelogram-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-thin.imageset/Contents.json deleted file mode 100644 index d811cbf91..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"parallelogram-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram.imageset/Contents.json deleted file mode 100644 index 3c9e7ee6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"parallelogram.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-bold.imageset/Contents.json deleted file mode 100644 index d282bab61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"park-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-duotone.imageset/Contents.json deleted file mode 100644 index 6c6301c0c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"park-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-fill.imageset/Contents.json deleted file mode 100644 index eb135f50f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"park-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-light.imageset/Contents.json deleted file mode 100644 index 541f2d1cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"park-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-thin.imageset/Contents.json deleted file mode 100644 index ac65f53e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"park-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park.imageset/Contents.json deleted file mode 100644 index e83244e94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"park.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-bold.imageset/Contents.json deleted file mode 100644 index 23089e526..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"password-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-duotone.imageset/Contents.json deleted file mode 100644 index 429d521aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"password-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-fill.imageset/Contents.json deleted file mode 100644 index 40df1764b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"password-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-light.imageset/Contents.json deleted file mode 100644 index 7959bbe2b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"password-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-thin.imageset/Contents.json deleted file mode 100644 index f67c2618d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"password-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password.imageset/Contents.json deleted file mode 100644 index 117ba6b63..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"password.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-bold.imageset/Contents.json deleted file mode 100644 index da0486dfa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"path-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-duotone.imageset/Contents.json deleted file mode 100644 index e3c515d77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"path-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-fill.imageset/Contents.json deleted file mode 100644 index 1499b1102..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"path-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-light.imageset/Contents.json deleted file mode 100644 index bb6eb400e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"path-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-thin.imageset/Contents.json deleted file mode 100644 index 982f7ae07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"path-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path.imageset/Contents.json deleted file mode 100644 index b481b013c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"path.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-bold.imageset/Contents.json deleted file mode 100644 index b057fd89e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"patreon-logo-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-duotone.imageset/Contents.json deleted file mode 100644 index 8ddd7587b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"patreon-logo-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-fill.imageset/Contents.json deleted file mode 100644 index 4847caa40..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"patreon-logo-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-light.imageset/Contents.json deleted file mode 100644 index e1b8ccc86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"patreon-logo-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-thin.imageset/Contents.json deleted file mode 100644 index 4bbaaec8e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"patreon-logo-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo.imageset/Contents.json deleted file mode 100644 index 3ab26580d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"patreon-logo.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-bold.imageset/Contents.json deleted file mode 100644 index ee8fed5f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pause-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-bold.imageset/Contents.json deleted file mode 100644 index 2beb6cf53..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pause-circle-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-duotone.imageset/Contents.json deleted file mode 100644 index dee23f187..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"pause-circle-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-fill.imageset/Contents.json deleted file mode 100644 index e7f09d9f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pause-circle-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-light.imageset/Contents.json deleted file mode 100644 index 0bcfdbaa2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pause-circle-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-thin.imageset/Contents.json deleted file mode 100644 index 0a5e53deb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pause-circle-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle.imageset/Contents.json deleted file mode 100644 index 10e3cca44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pause-circle.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-duotone.imageset/Contents.json deleted file mode 100644 index a3ee97572..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pause-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-fill.imageset/Contents.json deleted file mode 100644 index 0f14260a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pause-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-light.imageset/Contents.json deleted file mode 100644 index 4807972af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pause-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-thin.imageset/Contents.json deleted file mode 100644 index ff66bac27..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pause-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause.imageset/Contents.json deleted file mode 100644 index c7db57913..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pause.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-bold.imageset/Contents.json deleted file mode 100644 index 4c94aae1a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"paw-print-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-duotone.imageset/Contents.json deleted file mode 100644 index 580b96cd1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paw-print-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-fill.imageset/Contents.json deleted file mode 100644 index fe622b8ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"paw-print-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-light.imageset/Contents.json deleted file mode 100644 index f549b168f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"paw-print-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-thin.imageset/Contents.json deleted file mode 100644 index 72536d9c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"paw-print-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print.imageset/Contents.json deleted file mode 100644 index 1c83f9050..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"paw-print.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-bold.imageset/Contents.json deleted file mode 100644 index c5699a28b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"paypal-logo-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-duotone.imageset/Contents.json deleted file mode 100644 index 98157b46a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"paypal-logo-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-fill.imageset/Contents.json deleted file mode 100644 index fdb7fbd60..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"paypal-logo-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-light.imageset/Contents.json deleted file mode 100644 index a06513c08..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"paypal-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-thin.imageset/Contents.json deleted file mode 100644 index 8a74e947d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paypal-logo-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo.imageset/Contents.json deleted file mode 100644 index 5118cd583..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"paypal-logo.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-bold.imageset/Contents.json deleted file mode 100644 index be3062602..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"peace-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-duotone.imageset/Contents.json deleted file mode 100644 index 5c9220ceb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"peace-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-fill.imageset/Contents.json deleted file mode 100644 index 4ce9b1a54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"peace-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-light.imageset/Contents.json deleted file mode 100644 index 308385685..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"peace-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-thin.imageset/Contents.json deleted file mode 100644 index 8380c3829..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"peace-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace.imageset/Contents.json deleted file mode 100644 index b938d0e07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"peace.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-bold.imageset/Contents.json deleted file mode 100644 index 612426bfa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"pen-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-duotone.imageset/Contents.json deleted file mode 100644 index 454227504..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"pen-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-fill.imageset/Contents.json deleted file mode 100644 index 81d75a3da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"pen-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-light.imageset/Contents.json deleted file mode 100644 index 1783734c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pen-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-bold.imageset/Contents.json deleted file mode 100644 index 0f22434a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"pen-nib-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-duotone.imageset/Contents.json deleted file mode 100644 index da499e6f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pen-nib-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-fill.imageset/Contents.json deleted file mode 100644 index 751041fce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pen-nib-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-light.imageset/Contents.json deleted file mode 100644 index 5cba1d166..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pen-nib-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-bold.imageset/Contents.json deleted file mode 100644 index 2008a9111..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pen-nib-straight-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-duotone.imageset/Contents.json deleted file mode 100644 index 03bf387d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pen-nib-straight-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-fill.imageset/Contents.json deleted file mode 100644 index 5c97be73b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pen-nib-straight-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-light.imageset/Contents.json deleted file mode 100644 index b9fa2a9b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pen-nib-straight-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-thin.imageset/Contents.json deleted file mode 100644 index da2974990..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pen-nib-straight-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight.imageset/Contents.json deleted file mode 100644 index 54c4f29bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"pen-nib-straight.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-thin.imageset/Contents.json deleted file mode 100644 index 0df91370a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"pen-nib-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib.imageset/Contents.json deleted file mode 100644 index ef7f8d76a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pen-nib.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-thin.imageset/Contents.json deleted file mode 100644 index bf1119a2f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pen-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen.imageset/Contents.json deleted file mode 100644 index b6af0a155..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pen.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-bold.imageset/Contents.json deleted file mode 100644 index f4f50cfa6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pencil-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-bold.imageset/Contents.json deleted file mode 100644 index 9acf0a977..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pencil-circle-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-duotone.imageset/Contents.json deleted file mode 100644 index 12ed51f40..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pencil-circle-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-fill.imageset/Contents.json deleted file mode 100644 index 8c4a77cd6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pencil-circle-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-light.imageset/Contents.json deleted file mode 100644 index 9ea2f7938..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pencil-circle-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-thin.imageset/Contents.json deleted file mode 100644 index 058aa8560..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"pencil-circle-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle.imageset/Contents.json deleted file mode 100644 index 4227f576f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pencil-circle.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-duotone.imageset/Contents.json deleted file mode 100644 index fe8131a33..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pencil-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-fill.imageset/Contents.json deleted file mode 100644 index aeccfa1ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pencil-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-light.imageset/Contents.json deleted file mode 100644 index 31469bb55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pencil-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-bold.imageset/Contents.json deleted file mode 100644 index bc2a0396f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pencil-line-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-duotone.imageset/Contents.json deleted file mode 100644 index 3d1cc21ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pencil-line-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-fill.imageset/Contents.json deleted file mode 100644 index b4554dccb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pencil-line-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-light.imageset/Contents.json deleted file mode 100644 index 1b0cb8ab7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pencil-line-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-thin.imageset/Contents.json deleted file mode 100644 index 9e6a8ae6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"pencil-line-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line.imageset/Contents.json deleted file mode 100644 index e427509e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pencil-line.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-bold.imageset/Contents.json deleted file mode 100644 index 2680b0de8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pencil-ruler-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-duotone.imageset/Contents.json deleted file mode 100644 index 55e3a3a98..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pencil-ruler-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-fill.imageset/Contents.json deleted file mode 100644 index b17e795d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pencil-ruler-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-light.imageset/Contents.json deleted file mode 100644 index aefefcab2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"pencil-ruler-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-thin.imageset/Contents.json deleted file mode 100644 index f59e3a796..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pencil-ruler-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler.imageset/Contents.json deleted file mode 100644 index 662d5b33e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pencil-ruler.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-bold.imageset/Contents.json deleted file mode 100644 index b24430716..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"pencil-simple-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-duotone.imageset/Contents.json deleted file mode 100644 index 254c55e66..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"pencil-simple-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-fill.imageset/Contents.json deleted file mode 100644 index aa5b82e27..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pencil-simple-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-light.imageset/Contents.json deleted file mode 100644 index 71bd104de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pencil-simple-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-bold.imageset/Contents.json deleted file mode 100644 index 1fcc5bf87..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pencil-simple-line-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-duotone.imageset/Contents.json deleted file mode 100644 index 7a7848dee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pencil-simple-line-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-fill.imageset/Contents.json deleted file mode 100644 index a8a3926a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pencil-simple-line-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-light.imageset/Contents.json deleted file mode 100644 index d75908f7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"pencil-simple-line-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-thin.imageset/Contents.json deleted file mode 100644 index 48549b2af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pencil-simple-line-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line.imageset/Contents.json deleted file mode 100644 index a15598945..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pencil-simple-line.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-bold.imageset/Contents.json deleted file mode 100644 index 3dd9c0944..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pencil-simple-slash-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-duotone.imageset/Contents.json deleted file mode 100644 index cac85e16e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pencil-simple-slash-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-fill.imageset/Contents.json deleted file mode 100644 index d618efae3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pencil-simple-slash-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-light.imageset/Contents.json deleted file mode 100644 index 0d51b86d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pencil-simple-slash-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-thin.imageset/Contents.json deleted file mode 100644 index 9d27ea448..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"pencil-simple-slash-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash.imageset/Contents.json deleted file mode 100644 index 84a83fe4c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pencil-simple-slash.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-thin.imageset/Contents.json deleted file mode 100644 index 10f1dad7a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pencil-simple-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple.imageset/Contents.json deleted file mode 100644 index aba9f8204..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pencil-simple.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-bold.imageset/Contents.json deleted file mode 100644 index f0e0a48a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pencil-slash-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-duotone.imageset/Contents.json deleted file mode 100644 index 664b7a170..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pencil-slash-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-fill.imageset/Contents.json deleted file mode 100644 index 13e105010..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pencil-slash-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-light.imageset/Contents.json deleted file mode 100644 index 16e02402c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pencil-slash-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-thin.imageset/Contents.json deleted file mode 100644 index faf3fab07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pencil-slash-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash.imageset/Contents.json deleted file mode 100644 index 17156fff8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"pencil-slash.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-thin.imageset/Contents.json deleted file mode 100644 index 0a8fd423b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pencil-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil.imageset/Contents.json deleted file mode 100644 index 9455168f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pencil.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-bold.imageset/Contents.json deleted file mode 100644 index f5754906d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pentagon-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-duotone.imageset/Contents.json deleted file mode 100644 index ed70af434..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"pentagon-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-fill.imageset/Contents.json deleted file mode 100644 index 8c3b72f18..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pentagon-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-light.imageset/Contents.json deleted file mode 100644 index 4d2cfae6c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pentagon-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-thin.imageset/Contents.json deleted file mode 100644 index 1b4d31bdd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pentagon-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon.imageset/Contents.json deleted file mode 100644 index e3f947940..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pentagon.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-bold.imageset/Contents.json deleted file mode 100644 index 5778b6a98..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"pentagram-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-duotone.imageset/Contents.json deleted file mode 100644 index da155ce96..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"pentagram-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-fill.imageset/Contents.json deleted file mode 100644 index 8e77b10da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pentagram-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-light.imageset/Contents.json deleted file mode 100644 index 977dc24d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pentagram-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-thin.imageset/Contents.json deleted file mode 100644 index e51cd20f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pentagram-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram.imageset/Contents.json deleted file mode 100644 index cb474cce4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pentagram.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-bold.imageset/Contents.json deleted file mode 100644 index 81cf1124f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pepper-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-duotone.imageset/Contents.json deleted file mode 100644 index 11192791a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pepper-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-fill.imageset/Contents.json deleted file mode 100644 index 80fc64758..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"pepper-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-light.imageset/Contents.json deleted file mode 100644 index 889546de0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pepper-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-thin.imageset/Contents.json deleted file mode 100644 index 2e4c1f8d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"pepper-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper.imageset/Contents.json deleted file mode 100644 index e2cfa4ce4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"pepper.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-bold.imageset/Contents.json deleted file mode 100644 index af15ecc19..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"percent-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-duotone.imageset/Contents.json deleted file mode 100644 index 0f921e95d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"percent-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-fill.imageset/Contents.json deleted file mode 100644 index 629d23f8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"percent-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-light.imageset/Contents.json deleted file mode 100644 index 6ea0cac4f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"percent-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-thin.imageset/Contents.json deleted file mode 100644 index 51f117a65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"percent-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent.imageset/Contents.json deleted file mode 100644 index adc915b8e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"percent.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-bold.imageset/Contents.json deleted file mode 100644 index b810b25dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"person-arms-spread-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-duotone.imageset/Contents.json deleted file mode 100644 index d3707bc61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"person-arms-spread-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-fill.imageset/Contents.json deleted file mode 100644 index db9eedc55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"person-arms-spread-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-light.imageset/Contents.json deleted file mode 100644 index 338b5de3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"person-arms-spread-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-thin.imageset/Contents.json deleted file mode 100644 index fd55d1599..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"person-arms-spread-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread.imageset/Contents.json deleted file mode 100644 index 8deb57bb1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-arms-spread.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-bold.imageset/Contents.json deleted file mode 100644 index e7bce1423..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-duotone.imageset/Contents.json deleted file mode 100644 index 1434dea8e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"person-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-fill.imageset/Contents.json deleted file mode 100644 index 821689ab6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"person-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-light.imageset/Contents.json deleted file mode 100644 index 9ea91cf75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"person-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-bold.imageset/Contents.json deleted file mode 100644 index 2aa831198..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-bike-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-duotone.imageset/Contents.json deleted file mode 100644 index 21ee9b0dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-bike-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-fill.imageset/Contents.json deleted file mode 100644 index d3fed230d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"person-simple-bike-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-light.imageset/Contents.json deleted file mode 100644 index 7a448391e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"person-simple-bike-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-thin.imageset/Contents.json deleted file mode 100644 index 32a558710..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"person-simple-bike-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike.imageset/Contents.json deleted file mode 100644 index ac369b8eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"person-simple-bike.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bold.imageset/Contents.json deleted file mode 100644 index 150c9dbb3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"person-simple-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-bold.imageset/Contents.json deleted file mode 100644 index 5215313ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"person-simple-circle-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-duotone.imageset/Contents.json deleted file mode 100644 index a00c69d55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-circle-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-fill.imageset/Contents.json deleted file mode 100644 index 5ed100b66..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"person-simple-circle-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-light.imageset/Contents.json deleted file mode 100644 index 26519162e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"person-simple-circle-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-thin.imageset/Contents.json deleted file mode 100644 index c37d099df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"person-simple-circle-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle.imageset/Contents.json deleted file mode 100644 index df1b64136..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-circle.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-duotone.imageset/Contents.json deleted file mode 100644 index 6e1cfda7c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"person-simple-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-fill.imageset/Contents.json deleted file mode 100644 index 0a135edfa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-bold.imageset/Contents.json deleted file mode 100644 index 466b3720b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-hike-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-duotone.imageset/Contents.json deleted file mode 100644 index a9195c4e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"person-simple-hike-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-fill.imageset/Contents.json deleted file mode 100644 index 03a4801b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"person-simple-hike-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-light.imageset/Contents.json deleted file mode 100644 index f72c5c85f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"person-simple-hike-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-thin.imageset/Contents.json deleted file mode 100644 index b967e5461..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"person-simple-hike-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike.imageset/Contents.json deleted file mode 100644 index 76d3a707e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"person-simple-hike.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-light.imageset/Contents.json deleted file mode 100644 index 2416c1ae2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"person-simple-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-bold.imageset/Contents.json deleted file mode 100644 index 1a1e86973..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"person-simple-run-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-duotone.imageset/Contents.json deleted file mode 100644 index dc52142fa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"person-simple-run-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-fill.imageset/Contents.json deleted file mode 100644 index d933da40c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"person-simple-run-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-light.imageset/Contents.json deleted file mode 100644 index db11820be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"person-simple-run-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-thin.imageset/Contents.json deleted file mode 100644 index 4f956cd4c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-run-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run.imageset/Contents.json deleted file mode 100644 index 2647c1144..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-run.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-bold.imageset/Contents.json deleted file mode 100644 index 2da6ba288..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-ski-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-duotone.imageset/Contents.json deleted file mode 100644 index 3e037a4eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"person-simple-ski-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-fill.imageset/Contents.json deleted file mode 100644 index 240735e1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"person-simple-ski-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-light.imageset/Contents.json deleted file mode 100644 index 9493d5105..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-ski-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-thin.imageset/Contents.json deleted file mode 100644 index d91128b42..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-ski-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski.imageset/Contents.json deleted file mode 100644 index 92181dd84..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"person-simple-ski.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-bold.imageset/Contents.json deleted file mode 100644 index 9dbd992e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"person-simple-snowboard-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-duotone.imageset/Contents.json deleted file mode 100644 index ab6833c22..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"person-simple-snowboard-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-fill.imageset/Contents.json deleted file mode 100644 index f988c7ca4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"person-simple-snowboard-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-light.imageset/Contents.json deleted file mode 100644 index 39408ad7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"person-simple-snowboard-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-thin.imageset/Contents.json deleted file mode 100644 index 5e156fba4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"person-simple-snowboard-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard.imageset/Contents.json deleted file mode 100644 index 89b80f373..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"person-simple-snowboard.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-bold.imageset/Contents.json deleted file mode 100644 index 5b99ccd03..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"person-simple-swim-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-duotone.imageset/Contents.json deleted file mode 100644 index c18c1ba2f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"person-simple-swim-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-fill.imageset/Contents.json deleted file mode 100644 index e76bc656f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"person-simple-swim-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-light.imageset/Contents.json deleted file mode 100644 index 2e0eebf0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"person-simple-swim-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-thin.imageset/Contents.json deleted file mode 100644 index 870073920..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-swim-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim.imageset/Contents.json deleted file mode 100644 index 435481963..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"person-simple-swim.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-bold.imageset/Contents.json deleted file mode 100644 index 22834d59e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"person-simple-tai-chi-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-duotone.imageset/Contents.json deleted file mode 100644 index e242137cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-tai-chi-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-fill.imageset/Contents.json deleted file mode 100644 index f7921e383..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"person-simple-tai-chi-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-light.imageset/Contents.json deleted file mode 100644 index 9cf616b51..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"person-simple-tai-chi-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-thin.imageset/Contents.json deleted file mode 100644 index 28e531d5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"person-simple-tai-chi-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi.imageset/Contents.json deleted file mode 100644 index 80baac190..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"person-simple-tai-chi.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-thin.imageset/Contents.json deleted file mode 100644 index e68850dd7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-bold.imageset/Contents.json deleted file mode 100644 index 649398e04..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"person-simple-throw-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-duotone.imageset/Contents.json deleted file mode 100644 index 9a9bd82ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"person-simple-throw-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-fill.imageset/Contents.json deleted file mode 100644 index 2ef5ff181..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"person-simple-throw-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-light.imageset/Contents.json deleted file mode 100644 index a0172cfbe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-throw-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-thin.imageset/Contents.json deleted file mode 100644 index a9e3ac4a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"person-simple-throw-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw.imageset/Contents.json deleted file mode 100644 index 5e7f312cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"person-simple-throw.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-bold.imageset/Contents.json deleted file mode 100644 index 183a04212..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"person-simple-walk-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-duotone.imageset/Contents.json deleted file mode 100644 index dcfcf35e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"person-simple-walk-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-fill.imageset/Contents.json deleted file mode 100644 index 7a0322e8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"person-simple-walk-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-light.imageset/Contents.json deleted file mode 100644 index 0bb1407b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"person-simple-walk-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-thin.imageset/Contents.json deleted file mode 100644 index 3cd07beb5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple-walk-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk.imageset/Contents.json deleted file mode 100644 index 73b3fb840..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"person-simple-walk.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple.imageset/Contents.json deleted file mode 100644 index 70f91a508..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"person-simple.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-thin.imageset/Contents.json deleted file mode 100644 index c0d117c81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"person-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person.imageset/Contents.json deleted file mode 100644 index ee2353d5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"person.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-bold.imageset/Contents.json deleted file mode 100644 index 091bceebd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"perspective-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-duotone.imageset/Contents.json deleted file mode 100644 index 9d2d7de68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"perspective-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-fill.imageset/Contents.json deleted file mode 100644 index d2ff4fe7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"perspective-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-light.imageset/Contents.json deleted file mode 100644 index 7782173cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"perspective-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-thin.imageset/Contents.json deleted file mode 100644 index 9704e0b15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"perspective-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective.imageset/Contents.json deleted file mode 100644 index 521b2f487..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"perspective.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-bold.imageset/Contents.json deleted file mode 100644 index dd8d8e035..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"phone-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-bold.imageset/Contents.json deleted file mode 100644 index 89ca8eaf5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"phone-call-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-duotone.imageset/Contents.json deleted file mode 100644 index ef5f7f2ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"phone-call-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-fill.imageset/Contents.json deleted file mode 100644 index 7750e996b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"phone-call-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-light.imageset/Contents.json deleted file mode 100644 index 6b05a945d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-call-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-thin.imageset/Contents.json deleted file mode 100644 index 1e5656e83..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"phone-call-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call.imageset/Contents.json deleted file mode 100644 index 237bc29f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"phone-call.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-bold.imageset/Contents.json deleted file mode 100644 index 5fd36cf4a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"phone-disconnect-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-duotone.imageset/Contents.json deleted file mode 100644 index 81464931e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-disconnect-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-fill.imageset/Contents.json deleted file mode 100644 index d93ef812f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-disconnect-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-light.imageset/Contents.json deleted file mode 100644 index 84b4d0636..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-disconnect-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-thin.imageset/Contents.json deleted file mode 100644 index 8356f7486..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"phone-disconnect-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect.imageset/Contents.json deleted file mode 100644 index 84951ab1a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"phone-disconnect.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-duotone.imageset/Contents.json deleted file mode 100644 index bd512f4e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-fill.imageset/Contents.json deleted file mode 100644 index 0eb2a3bc8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"phone-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-bold.imageset/Contents.json deleted file mode 100644 index 8bbdb445f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-incoming-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-duotone.imageset/Contents.json deleted file mode 100644 index 5159d663c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-incoming-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-fill.imageset/Contents.json deleted file mode 100644 index be8442e75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"phone-incoming-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-light.imageset/Contents.json deleted file mode 100644 index abe8aeef4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-incoming-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-thin.imageset/Contents.json deleted file mode 100644 index 086e4e10e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"phone-incoming-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming.imageset/Contents.json deleted file mode 100644 index 45d7566fe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-incoming.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-light.imageset/Contents.json deleted file mode 100644 index 5cdded3fd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"phone-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-bold.imageset/Contents.json deleted file mode 100644 index 5bb18f6b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"phone-list-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-duotone.imageset/Contents.json deleted file mode 100644 index 3401d7ac6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"phone-list-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-fill.imageset/Contents.json deleted file mode 100644 index 6fdcee96d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"phone-list-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-light.imageset/Contents.json deleted file mode 100644 index a369abba5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-list-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-thin.imageset/Contents.json deleted file mode 100644 index 1b27d9f07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"phone-list-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list.imageset/Contents.json deleted file mode 100644 index eee76e06c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"phone-list.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-bold.imageset/Contents.json deleted file mode 100644 index dce9f6d93..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"phone-outgoing-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-duotone.imageset/Contents.json deleted file mode 100644 index 1c3bce7ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-outgoing-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-fill.imageset/Contents.json deleted file mode 100644 index 403698ff5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-outgoing-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-light.imageset/Contents.json deleted file mode 100644 index 182722340..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"phone-outgoing-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-thin.imageset/Contents.json deleted file mode 100644 index 08e846a5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"phone-outgoing-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing.imageset/Contents.json deleted file mode 100644 index beb79dc40..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"phone-outgoing.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-bold.imageset/Contents.json deleted file mode 100644 index 08a83f05d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-pause-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-duotone.imageset/Contents.json deleted file mode 100644 index 0cb381453..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"phone-pause-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-fill.imageset/Contents.json deleted file mode 100644 index 191398650..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"phone-pause-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-light.imageset/Contents.json deleted file mode 100644 index d2ba22d9c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-pause-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-thin.imageset/Contents.json deleted file mode 100644 index f3eb6ec94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"phone-pause-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause.imageset/Contents.json deleted file mode 100644 index 95056ef86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"phone-pause.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-bold.imageset/Contents.json deleted file mode 100644 index 4d2f7d409..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-plus-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-duotone.imageset/Contents.json deleted file mode 100644 index a5d6b37f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"phone-plus-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-fill.imageset/Contents.json deleted file mode 100644 index 0851b8fc0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"phone-plus-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-light.imageset/Contents.json deleted file mode 100644 index d58227b30..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"phone-plus-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-thin.imageset/Contents.json deleted file mode 100644 index 9b99645c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"phone-plus-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus.imageset/Contents.json deleted file mode 100644 index c61cd957d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"phone-plus.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-bold.imageset/Contents.json deleted file mode 100644 index 092e69b87..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"phone-slash-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-duotone.imageset/Contents.json deleted file mode 100644 index 3c0a6f73d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"phone-slash-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-fill.imageset/Contents.json deleted file mode 100644 index 39b867b13..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"phone-slash-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-light.imageset/Contents.json deleted file mode 100644 index 057607c2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"phone-slash-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-thin.imageset/Contents.json deleted file mode 100644 index acddf98e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"phone-slash-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash.imageset/Contents.json deleted file mode 100644 index 918fc2e51..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"phone-slash.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-thin.imageset/Contents.json deleted file mode 100644 index 8e21858cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"phone-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-bold.imageset/Contents.json deleted file mode 100644 index c34a73eef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-transfer-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-duotone.imageset/Contents.json deleted file mode 100644 index ca2703195..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"phone-transfer-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-fill.imageset/Contents.json deleted file mode 100644 index e9172d5a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"phone-transfer-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-light.imageset/Contents.json deleted file mode 100644 index 0c1848730..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"phone-transfer-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-thin.imageset/Contents.json deleted file mode 100644 index 6234768f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"phone-transfer-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer.imageset/Contents.json deleted file mode 100644 index cb7b691e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"phone-transfer.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-bold.imageset/Contents.json deleted file mode 100644 index 03e8ea9f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"phone-x-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-duotone.imageset/Contents.json deleted file mode 100644 index f78589a15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"phone-x-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-fill.imageset/Contents.json deleted file mode 100644 index fd0493016..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"phone-x-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-light.imageset/Contents.json deleted file mode 100644 index 5f5b3c19d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"phone-x-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-thin.imageset/Contents.json deleted file mode 100644 index 39b3f3cc7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"phone-x-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x.imageset/Contents.json deleted file mode 100644 index 02844d5c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"phone-x.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone.imageset/Contents.json deleted file mode 100644 index 1bf8b50e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"phone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-bold.imageset/Contents.json deleted file mode 100644 index 8f47403e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"phosphor-logo-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-duotone.imageset/Contents.json deleted file mode 100644 index d2f95da4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"phosphor-logo-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-fill.imageset/Contents.json deleted file mode 100644 index 45989b579..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"phosphor-logo-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-light.imageset/Contents.json deleted file mode 100644 index c06e7f6c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"phosphor-logo-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-thin.imageset/Contents.json deleted file mode 100644 index 2d23b0522..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"phosphor-logo-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo.imageset/Contents.json deleted file mode 100644 index 8b5844962..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"phosphor-logo.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-bold.imageset/Contents.json deleted file mode 100644 index 2dd0db0d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pi-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-duotone.imageset/Contents.json deleted file mode 100644 index 9f77c6486..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pi-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-fill.imageset/Contents.json deleted file mode 100644 index 0b92f1e81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pi-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-light.imageset/Contents.json deleted file mode 100644 index 3ebae0396..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pi-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-thin.imageset/Contents.json deleted file mode 100644 index 87ec799b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"pi-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi.imageset/Contents.json deleted file mode 100644 index abb112ed0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pi.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-bold.imageset/Contents.json deleted file mode 100644 index dc8b68b7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"piano-keys-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-duotone.imageset/Contents.json deleted file mode 100644 index cca34695c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"piano-keys-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-fill.imageset/Contents.json deleted file mode 100644 index 791c89389..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"piano-keys-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-light.imageset/Contents.json deleted file mode 100644 index 4938c10c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"piano-keys-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-thin.imageset/Contents.json deleted file mode 100644 index 4e786daba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"piano-keys-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys.imageset/Contents.json deleted file mode 100644 index 9bd751cdb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"piano-keys.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-bold.imageset/Contents.json deleted file mode 100644 index a037e4dd1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"picnic-table-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-duotone.imageset/Contents.json deleted file mode 100644 index c11388bce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"picnic-table-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-fill.imageset/Contents.json deleted file mode 100644 index bb3dd3a8a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"picnic-table-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-light.imageset/Contents.json deleted file mode 100644 index 26190972d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"picnic-table-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-thin.imageset/Contents.json deleted file mode 100644 index a72e29b58..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"picnic-table-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table.imageset/Contents.json deleted file mode 100644 index 2498ff964..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"picnic-table.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-bold.imageset/Contents.json deleted file mode 100644 index 24adef141..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"picture-in-picture-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-duotone.imageset/Contents.json deleted file mode 100644 index e1eab154e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"picture-in-picture-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-fill.imageset/Contents.json deleted file mode 100644 index 1442871ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"picture-in-picture-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-light.imageset/Contents.json deleted file mode 100644 index 7107b60af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"picture-in-picture-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-thin.imageset/Contents.json deleted file mode 100644 index 8bad0da98..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"picture-in-picture-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture.imageset/Contents.json deleted file mode 100644 index 980859269..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"picture-in-picture.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-bold.imageset/Contents.json deleted file mode 100644 index 191279d0f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"piggy-bank-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-duotone.imageset/Contents.json deleted file mode 100644 index 944e766b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"piggy-bank-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-fill.imageset/Contents.json deleted file mode 100644 index cb836d04d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"piggy-bank-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-light.imageset/Contents.json deleted file mode 100644 index 9e0219362..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"piggy-bank-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-thin.imageset/Contents.json deleted file mode 100644 index 5409b7a6c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"piggy-bank-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank.imageset/Contents.json deleted file mode 100644 index 00ddb14e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"piggy-bank.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-bold.imageset/Contents.json deleted file mode 100644 index d36d0c80c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pill-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-duotone.imageset/Contents.json deleted file mode 100644 index eb0da1e27..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pill-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-fill.imageset/Contents.json deleted file mode 100644 index 2a07ddfd4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"pill-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-light.imageset/Contents.json deleted file mode 100644 index 33bd70db5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pill-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-thin.imageset/Contents.json deleted file mode 100644 index f04aad79c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pill-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill.imageset/Contents.json deleted file mode 100644 index 997674f83..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"pill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-bold.imageset/Contents.json deleted file mode 100644 index d6ed4c711..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"ping-pong-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-duotone.imageset/Contents.json deleted file mode 100644 index d7852496a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"ping-pong-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-fill.imageset/Contents.json deleted file mode 100644 index d6885297d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"ping-pong-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-light.imageset/Contents.json deleted file mode 100644 index 0cfe4bece..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ping-pong-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-thin.imageset/Contents.json deleted file mode 100644 index 3c8d07bc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ping-pong-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong.imageset/Contents.json deleted file mode 100644 index 60840e6ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"ping-pong.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-bold.imageset/Contents.json deleted file mode 100644 index 51cf67e87..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pint-glass-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-duotone.imageset/Contents.json deleted file mode 100644 index 016ec0d18..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"pint-glass-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-fill.imageset/Contents.json deleted file mode 100644 index a87b6bede..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pint-glass-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-light.imageset/Contents.json deleted file mode 100644 index 0c486d97b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"pint-glass-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-thin.imageset/Contents.json deleted file mode 100644 index cfc6259a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"pint-glass-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass.imageset/Contents.json deleted file mode 100644 index ba63246b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pint-glass.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-bold.imageset/Contents.json deleted file mode 100644 index 35d21f794..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pinterest-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-duotone.imageset/Contents.json deleted file mode 100644 index a5d58530d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pinterest-logo-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-fill.imageset/Contents.json deleted file mode 100644 index 808b28ad3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pinterest-logo-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-light.imageset/Contents.json deleted file mode 100644 index 3aa7daf79..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pinterest-logo-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-thin.imageset/Contents.json deleted file mode 100644 index 938c1c08f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pinterest-logo-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo.imageset/Contents.json deleted file mode 100644 index a87866be1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pinterest-logo.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-bold.imageset/Contents.json deleted file mode 100644 index 6668abebe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pinwheel-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-duotone.imageset/Contents.json deleted file mode 100644 index 6dcea6389..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pinwheel-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-fill.imageset/Contents.json deleted file mode 100644 index 830f97946..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pinwheel-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-light.imageset/Contents.json deleted file mode 100644 index 7c092bcb2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"pinwheel-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-thin.imageset/Contents.json deleted file mode 100644 index 9ff276e5b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pinwheel-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel.imageset/Contents.json deleted file mode 100644 index d75002521..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pinwheel.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-bold.imageset/Contents.json deleted file mode 100644 index 58e963c9f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pipe-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-duotone.imageset/Contents.json deleted file mode 100644 index 58e672217..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pipe-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-fill.imageset/Contents.json deleted file mode 100644 index ee4271831..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pipe-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-light.imageset/Contents.json deleted file mode 100644 index b387e7e56..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"pipe-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-thin.imageset/Contents.json deleted file mode 100644 index 8f53e9951..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"pipe-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-bold.imageset/Contents.json deleted file mode 100644 index 4a9667261..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pipe-wrench-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-duotone.imageset/Contents.json deleted file mode 100644 index 7a7d313b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pipe-wrench-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-fill.imageset/Contents.json deleted file mode 100644 index 4d3ff0eda..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pipe-wrench-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-light.imageset/Contents.json deleted file mode 100644 index 65fc7120a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"pipe-wrench-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-thin.imageset/Contents.json deleted file mode 100644 index 9c2f9133a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"pipe-wrench-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench.imageset/Contents.json deleted file mode 100644 index bc89bed8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pipe-wrench.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe.imageset/Contents.json deleted file mode 100644 index 05a288314..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"pipe.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-bold.imageset/Contents.json deleted file mode 100644 index e976f5eda..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pix-logo-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-duotone.imageset/Contents.json deleted file mode 100644 index 1324687f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pix-logo-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-fill.imageset/Contents.json deleted file mode 100644 index 73abc48b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pix-logo-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-light.imageset/Contents.json deleted file mode 100644 index af5d6affb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"pix-logo-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-thin.imageset/Contents.json deleted file mode 100644 index 728288f2f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pix-logo-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo.imageset/Contents.json deleted file mode 100644 index 9bd30b83d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pix-logo.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-bold.imageset/Contents.json deleted file mode 100644 index b22f422be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"pizza-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-duotone.imageset/Contents.json deleted file mode 100644 index 4079e716b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"pizza-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-fill.imageset/Contents.json deleted file mode 100644 index e756eea95..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pizza-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-light.imageset/Contents.json deleted file mode 100644 index ca45746a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pizza-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-thin.imageset/Contents.json deleted file mode 100644 index ae5715f2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pizza-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza.imageset/Contents.json deleted file mode 100644 index 60f8aed78..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pizza.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-bold.imageset/Contents.json deleted file mode 100644 index f6e1614d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"placeholder-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-duotone.imageset/Contents.json deleted file mode 100644 index f5d503733..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"placeholder-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-fill.imageset/Contents.json deleted file mode 100644 index 82c13eb3f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"placeholder-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-light.imageset/Contents.json deleted file mode 100644 index b7c1793c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"placeholder-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-thin.imageset/Contents.json deleted file mode 100644 index f86f61b71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"placeholder-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder.imageset/Contents.json deleted file mode 100644 index d6f1a46e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"placeholder.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-bold.imageset/Contents.json deleted file mode 100644 index b0dcdffed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"planet-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-duotone.imageset/Contents.json deleted file mode 100644 index 8b3b2a2f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"planet-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-fill.imageset/Contents.json deleted file mode 100644 index ae49bed11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"planet-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-light.imageset/Contents.json deleted file mode 100644 index 5744bef18..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"planet-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-thin.imageset/Contents.json deleted file mode 100644 index 5743764b1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"planet-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet.imageset/Contents.json deleted file mode 100644 index a6c2f9c25..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"planet.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-bold.imageset/Contents.json deleted file mode 100644 index 18e101a0e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"plant-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-duotone.imageset/Contents.json deleted file mode 100644 index ac127e8ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"plant-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-fill.imageset/Contents.json deleted file mode 100644 index aa653c245..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"plant-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-light.imageset/Contents.json deleted file mode 100644 index 41b7ebb6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"plant-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-thin.imageset/Contents.json deleted file mode 100644 index 051d32b56..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"plant-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant.imageset/Contents.json deleted file mode 100644 index 7d32d45ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"plant.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-bold.imageset/Contents.json deleted file mode 100644 index 65d561542..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"play-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-bold.imageset/Contents.json deleted file mode 100644 index 36a49d8bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"play-circle-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-duotone.imageset/Contents.json deleted file mode 100644 index 58bf4f626..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"play-circle-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-fill.imageset/Contents.json deleted file mode 100644 index 85bca0134..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"play-circle-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-light.imageset/Contents.json deleted file mode 100644 index 28c06a240..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"play-circle-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-thin.imageset/Contents.json deleted file mode 100644 index 8b8c9a2c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"play-circle-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle.imageset/Contents.json deleted file mode 100644 index 9104591a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"play-circle.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-duotone.imageset/Contents.json deleted file mode 100644 index 61bf97ddd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"play-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-fill.imageset/Contents.json deleted file mode 100644 index 1f1764b53..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"play-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-light.imageset/Contents.json deleted file mode 100644 index f67ca62bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"play-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-bold.imageset/Contents.json deleted file mode 100644 index a0590a923..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"play-pause-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-duotone.imageset/Contents.json deleted file mode 100644 index 778b04484..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"play-pause-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-fill.imageset/Contents.json deleted file mode 100644 index a7345323c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"play-pause-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-light.imageset/Contents.json deleted file mode 100644 index 88b767d9b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"play-pause-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-thin.imageset/Contents.json deleted file mode 100644 index 559ad545f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"play-pause-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause.imageset/Contents.json deleted file mode 100644 index c48db81a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"play-pause.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-thin.imageset/Contents.json deleted file mode 100644 index b48e88173..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"play-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play.imageset/Contents.json deleted file mode 100644 index f702f5d89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"play.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-bold.imageset/Contents.json deleted file mode 100644 index 40c5f7bd5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"playlist-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-duotone.imageset/Contents.json deleted file mode 100644 index 06ad632a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"playlist-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-fill.imageset/Contents.json deleted file mode 100644 index 91130b494..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"playlist-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-light.imageset/Contents.json deleted file mode 100644 index 2f62cee34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"playlist-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-thin.imageset/Contents.json deleted file mode 100644 index fd2df6785..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"playlist-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist.imageset/Contents.json deleted file mode 100644 index 94b6e93ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"playlist.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-bold.imageset/Contents.json deleted file mode 100644 index 9f8d8464d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"plug-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-bold.imageset/Contents.json deleted file mode 100644 index 734f2fde7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"plug-charging-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-duotone.imageset/Contents.json deleted file mode 100644 index a397f4105..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"plug-charging-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-fill.imageset/Contents.json deleted file mode 100644 index b33c4ac12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"plug-charging-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-light.imageset/Contents.json deleted file mode 100644 index 7449a42e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"plug-charging-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-thin.imageset/Contents.json deleted file mode 100644 index dfd6b50dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"plug-charging-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging.imageset/Contents.json deleted file mode 100644 index 1cc1e4ead..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"plug-charging.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-duotone.imageset/Contents.json deleted file mode 100644 index 96f7ba60c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"plug-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-fill.imageset/Contents.json deleted file mode 100644 index da7333b4a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"plug-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-light.imageset/Contents.json deleted file mode 100644 index a0f287b0f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"plug-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-thin.imageset/Contents.json deleted file mode 100644 index 0a2ccc37d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"plug-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug.imageset/Contents.json deleted file mode 100644 index 5043123d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"plug.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-bold.imageset/Contents.json deleted file mode 100644 index a60134de9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"plugs-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-bold.imageset/Contents.json deleted file mode 100644 index e1b3185ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"plugs-connected-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-duotone.imageset/Contents.json deleted file mode 100644 index 7d57a331c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"plugs-connected-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-fill.imageset/Contents.json deleted file mode 100644 index 782b7898d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"plugs-connected-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-light.imageset/Contents.json deleted file mode 100644 index 2a803ec4a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"plugs-connected-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-thin.imageset/Contents.json deleted file mode 100644 index 4cc24380c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"plugs-connected-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected.imageset/Contents.json deleted file mode 100644 index f59e8b0a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"plugs-connected.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-duotone.imageset/Contents.json deleted file mode 100644 index cb991dd63..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"plugs-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-fill.imageset/Contents.json deleted file mode 100644 index daec7202a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"plugs-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-light.imageset/Contents.json deleted file mode 100644 index 411d48519..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"plugs-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-thin.imageset/Contents.json deleted file mode 100644 index 1101dd173..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"plugs-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs.imageset/Contents.json deleted file mode 100644 index d2c8c1b90..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"plugs.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-bold.imageset/Contents.json deleted file mode 100644 index d26792669..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"plus-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-bold.imageset/Contents.json deleted file mode 100644 index 4d847ddae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"plus-circle-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-duotone.imageset/Contents.json deleted file mode 100644 index 8649ebaa1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"plus-circle-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-fill.imageset/Contents.json deleted file mode 100644 index dca703580..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"plus-circle-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-light.imageset/Contents.json deleted file mode 100644 index b4a6976f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"plus-circle-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-thin.imageset/Contents.json deleted file mode 100644 index 61352a3f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"plus-circle-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle.imageset/Contents.json deleted file mode 100644 index f4afcf433..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"plus-circle.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-duotone.imageset/Contents.json deleted file mode 100644 index 4d1a0f6eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"plus-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-fill.imageset/Contents.json deleted file mode 100644 index 74de87975..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"plus-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-light.imageset/Contents.json deleted file mode 100644 index 7b24aa690..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"plus-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-bold.imageset/Contents.json deleted file mode 100644 index f6b905728..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"plus-minus-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-duotone.imageset/Contents.json deleted file mode 100644 index 3ad0d8df9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"plus-minus-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-fill.imageset/Contents.json deleted file mode 100644 index 9bfdca588..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"plus-minus-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-light.imageset/Contents.json deleted file mode 100644 index b5ea2dd24..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"plus-minus-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-thin.imageset/Contents.json deleted file mode 100644 index 0b4e8f652..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"plus-minus-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus.imageset/Contents.json deleted file mode 100644 index 3ee8a57a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"plus-minus.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-bold.imageset/Contents.json deleted file mode 100644 index e22908a66..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"plus-square-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-duotone.imageset/Contents.json deleted file mode 100644 index 406c554d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"plus-square-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-fill.imageset/Contents.json deleted file mode 100644 index 449d95cb0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"plus-square-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-light.imageset/Contents.json deleted file mode 100644 index f44cb3a2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"plus-square-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-thin.imageset/Contents.json deleted file mode 100644 index 8fd98d67b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"plus-square-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square.imageset/Contents.json deleted file mode 100644 index 963ec10d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"plus-square.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-thin.imageset/Contents.json deleted file mode 100644 index d92c845c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"plus-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus.imageset/Contents.json deleted file mode 100644 index cf64ef06b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"plus.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-bold.imageset/Contents.json deleted file mode 100644 index a71349734..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"poker-chip-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-duotone.imageset/Contents.json deleted file mode 100644 index 8d5676ab4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"poker-chip-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-fill.imageset/Contents.json deleted file mode 100644 index 19571ac00..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"poker-chip-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-light.imageset/Contents.json deleted file mode 100644 index dcd2f5b42..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"poker-chip-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-thin.imageset/Contents.json deleted file mode 100644 index 9cdd70a03..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"poker-chip-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip.imageset/Contents.json deleted file mode 100644 index 2ab825247..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"poker-chip.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-bold.imageset/Contents.json deleted file mode 100644 index c48ee34be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"police-car-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-duotone.imageset/Contents.json deleted file mode 100644 index fa5091d00..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"police-car-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-fill.imageset/Contents.json deleted file mode 100644 index 93bfc22a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"police-car-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-light.imageset/Contents.json deleted file mode 100644 index 9f4db3926..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"police-car-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-thin.imageset/Contents.json deleted file mode 100644 index 429118411..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"police-car-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car.imageset/Contents.json deleted file mode 100644 index cf35797b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"police-car.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-bold.imageset/Contents.json deleted file mode 100644 index a13540708..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"polygon-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-duotone.imageset/Contents.json deleted file mode 100644 index 059c9dc98..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"polygon-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-fill.imageset/Contents.json deleted file mode 100644 index 7cf1be24c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"polygon-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-light.imageset/Contents.json deleted file mode 100644 index ad9d94d3e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"polygon-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-thin.imageset/Contents.json deleted file mode 100644 index cbf8847f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"polygon-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon.imageset/Contents.json deleted file mode 100644 index fec8ae41b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"polygon.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-bold.imageset/Contents.json deleted file mode 100644 index 6b25df13f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"popcorn-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-duotone.imageset/Contents.json deleted file mode 100644 index 3a1f728d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"popcorn-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-fill.imageset/Contents.json deleted file mode 100644 index 045b7ec65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"popcorn-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-light.imageset/Contents.json deleted file mode 100644 index e25a2ee70..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"popcorn-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-thin.imageset/Contents.json deleted file mode 100644 index af57118fa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"popcorn-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn.imageset/Contents.json deleted file mode 100644 index 7f6ffdfe8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"popcorn.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-bold.imageset/Contents.json deleted file mode 100644 index b20b321ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"popsicle-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-duotone.imageset/Contents.json deleted file mode 100644 index 6e2e5c109..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"popsicle-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-fill.imageset/Contents.json deleted file mode 100644 index 61973fa2b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"popsicle-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-light.imageset/Contents.json deleted file mode 100644 index bfe1ee6c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"popsicle-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-thin.imageset/Contents.json deleted file mode 100644 index 69f1f5923..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"popsicle-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle.imageset/Contents.json deleted file mode 100644 index b6026d4d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"popsicle.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-bold.imageset/Contents.json deleted file mode 100644 index 400c569d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"potted-plant-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-duotone.imageset/Contents.json deleted file mode 100644 index 81de2ca15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"potted-plant-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-fill.imageset/Contents.json deleted file mode 100644 index 243d1dcb5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"potted-plant-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-light.imageset/Contents.json deleted file mode 100644 index 0499a1317..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"potted-plant-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-thin.imageset/Contents.json deleted file mode 100644 index c0fb4b31d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"potted-plant-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant.imageset/Contents.json deleted file mode 100644 index 0dd2e5516..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"potted-plant.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-bold.imageset/Contents.json deleted file mode 100644 index 155ecde0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"power-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-duotone.imageset/Contents.json deleted file mode 100644 index 84a5a03f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"power-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-fill.imageset/Contents.json deleted file mode 100644 index 67748a667..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"power-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-light.imageset/Contents.json deleted file mode 100644 index f7203ff38..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"power-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-thin.imageset/Contents.json deleted file mode 100644 index c19caab04..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"power-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power.imageset/Contents.json deleted file mode 100644 index 8f66e88fd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"power.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-bold.imageset/Contents.json deleted file mode 100644 index 69c8cabad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"prescription-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-duotone.imageset/Contents.json deleted file mode 100644 index 1c066ec0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"prescription-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-fill.imageset/Contents.json deleted file mode 100644 index 121f66eec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"prescription-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-light.imageset/Contents.json deleted file mode 100644 index 8333b77d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"prescription-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-thin.imageset/Contents.json deleted file mode 100644 index 178f0d0d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"prescription-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription.imageset/Contents.json deleted file mode 100644 index e9dc89fd4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"prescription.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-bold.imageset/Contents.json deleted file mode 100644 index d8bbae7e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"presentation-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-bold.imageset/Contents.json deleted file mode 100644 index 047d5c35c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"presentation-chart-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-duotone.imageset/Contents.json deleted file mode 100644 index dc56e271b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"presentation-chart-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-fill.imageset/Contents.json deleted file mode 100644 index 61c9deb6f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"presentation-chart-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-light.imageset/Contents.json deleted file mode 100644 index 8263291c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"presentation-chart-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-thin.imageset/Contents.json deleted file mode 100644 index 17247d4dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"presentation-chart-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart.imageset/Contents.json deleted file mode 100644 index 2ca229d18..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"presentation-chart.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-duotone.imageset/Contents.json deleted file mode 100644 index abd4bc7d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"presentation-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-fill.imageset/Contents.json deleted file mode 100644 index 1c5118a69..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"presentation-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-light.imageset/Contents.json deleted file mode 100644 index 0362f5668..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"presentation-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-thin.imageset/Contents.json deleted file mode 100644 index 1f040bc71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"presentation-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation.imageset/Contents.json deleted file mode 100644 index a0b0ad96e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"presentation.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-bold.imageset/Contents.json deleted file mode 100644 index bb3c3c5ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"printer-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-duotone.imageset/Contents.json deleted file mode 100644 index 783731f9c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"printer-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-fill.imageset/Contents.json deleted file mode 100644 index 70d96380f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"printer-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-light.imageset/Contents.json deleted file mode 100644 index 320022ca4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"printer-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-thin.imageset/Contents.json deleted file mode 100644 index a38ef9b81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"printer-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer.imageset/Contents.json deleted file mode 100644 index 147ce5b81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"printer.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-bold.imageset/Contents.json deleted file mode 100644 index a5929a0d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"prohibit-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-duotone.imageset/Contents.json deleted file mode 100644 index e08fbb615..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"prohibit-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-fill.imageset/Contents.json deleted file mode 100644 index 637ce8c64..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"prohibit-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-bold.imageset/Contents.json deleted file mode 100644 index ed65e7a26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"prohibit-inset-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-duotone.imageset/Contents.json deleted file mode 100644 index 3e7bff5b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"prohibit-inset-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-fill.imageset/Contents.json deleted file mode 100644 index 0d1421cd2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"prohibit-inset-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-light.imageset/Contents.json deleted file mode 100644 index 9807a4920..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"prohibit-inset-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-thin.imageset/Contents.json deleted file mode 100644 index 428f73946..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"prohibit-inset-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset.imageset/Contents.json deleted file mode 100644 index 7c023207e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"prohibit-inset.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-light.imageset/Contents.json deleted file mode 100644 index 1dd0a4a74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"prohibit-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-thin.imageset/Contents.json deleted file mode 100644 index a75c13cd8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"prohibit-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit.imageset/Contents.json deleted file mode 100644 index fb0d1f159..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"prohibit.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-bold.imageset/Contents.json deleted file mode 100644 index f6690f6d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"projector-screen-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-bold.imageset/Contents.json deleted file mode 100644 index 6a77e9ae8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"projector-screen-chart-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-duotone.imageset/Contents.json deleted file mode 100644 index fb297f5e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"projector-screen-chart-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-fill.imageset/Contents.json deleted file mode 100644 index de508e224..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"projector-screen-chart-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-light.imageset/Contents.json deleted file mode 100644 index d4b2de04a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"projector-screen-chart-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-thin.imageset/Contents.json deleted file mode 100644 index 264e07255..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"projector-screen-chart-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart.imageset/Contents.json deleted file mode 100644 index 63230edff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"projector-screen-chart.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-duotone.imageset/Contents.json deleted file mode 100644 index f483dfc27..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"projector-screen-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-fill.imageset/Contents.json deleted file mode 100644 index c7fb9c5bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"projector-screen-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-light.imageset/Contents.json deleted file mode 100644 index 48bba49ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"projector-screen-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-thin.imageset/Contents.json deleted file mode 100644 index 259ebf8d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"projector-screen-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen.imageset/Contents.json deleted file mode 100644 index 2944d8af5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"projector-screen.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-bold.imageset/Contents.json deleted file mode 100644 index e897a6368..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"pulse-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-duotone.imageset/Contents.json deleted file mode 100644 index c59205b71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"pulse-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-fill.imageset/Contents.json deleted file mode 100644 index 445dbed05..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"pulse-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-light.imageset/Contents.json deleted file mode 100644 index 273b5fd2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"pulse-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-thin.imageset/Contents.json deleted file mode 100644 index cdff0be81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"pulse-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse.imageset/Contents.json deleted file mode 100644 index 5f04541b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"pulse.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-bold.imageset/Contents.json deleted file mode 100644 index e1abe074f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"push-pin-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-duotone.imageset/Contents.json deleted file mode 100644 index 2530f7583..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"push-pin-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-fill.imageset/Contents.json deleted file mode 100644 index 7e157161d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"push-pin-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-light.imageset/Contents.json deleted file mode 100644 index 8b0d6f500..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"push-pin-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-bold.imageset/Contents.json deleted file mode 100644 index db16fd422..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"push-pin-simple-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-duotone.imageset/Contents.json deleted file mode 100644 index 26b7bc474..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"push-pin-simple-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-fill.imageset/Contents.json deleted file mode 100644 index 902f50d20..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"push-pin-simple-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-light.imageset/Contents.json deleted file mode 100644 index 006be82d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"push-pin-simple-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-bold.imageset/Contents.json deleted file mode 100644 index 4ebdeced4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"push-pin-simple-slash-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-duotone.imageset/Contents.json deleted file mode 100644 index 200017a63..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"push-pin-simple-slash-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-fill.imageset/Contents.json deleted file mode 100644 index 50f925c28..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"push-pin-simple-slash-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-light.imageset/Contents.json deleted file mode 100644 index ef7ba47f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"push-pin-simple-slash-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-thin.imageset/Contents.json deleted file mode 100644 index d5499c9c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"push-pin-simple-slash-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash.imageset/Contents.json deleted file mode 100644 index 1d7427d9a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"push-pin-simple-slash.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-thin.imageset/Contents.json deleted file mode 100644 index 603651d1e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"push-pin-simple-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple.imageset/Contents.json deleted file mode 100644 index e35d01a74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"push-pin-simple.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-bold.imageset/Contents.json deleted file mode 100644 index 8b61c32d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"push-pin-slash-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-duotone.imageset/Contents.json deleted file mode 100644 index 192652707..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"push-pin-slash-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-fill.imageset/Contents.json deleted file mode 100644 index b5148cc1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"push-pin-slash-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-light.imageset/Contents.json deleted file mode 100644 index 61b12b232..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"push-pin-slash-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-thin.imageset/Contents.json deleted file mode 100644 index c184143a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"push-pin-slash-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash.imageset/Contents.json deleted file mode 100644 index ac641382a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"push-pin-slash.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-thin.imageset/Contents.json deleted file mode 100644 index 27ccd32ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"push-pin-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin.imageset/Contents.json deleted file mode 100644 index 4af593419..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"push-pin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-bold.imageset/Contents.json deleted file mode 100644 index 73764d4c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"puzzle-piece-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-duotone.imageset/Contents.json deleted file mode 100644 index 8b90e4e74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"puzzle-piece-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-fill.imageset/Contents.json deleted file mode 100644 index 94ab5265d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"puzzle-piece-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-light.imageset/Contents.json deleted file mode 100644 index a864da91f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"puzzle-piece-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-thin.imageset/Contents.json deleted file mode 100644 index 45c0eac8b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"puzzle-piece-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece.imageset/Contents.json deleted file mode 100644 index 024bef1d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"puzzle-piece.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-bold.imageset/Contents.json deleted file mode 100644 index 2230667ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"qr-code-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-duotone.imageset/Contents.json deleted file mode 100644 index dc447a47b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"qr-code-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-fill.imageset/Contents.json deleted file mode 100644 index b73fdc8d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"qr-code-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-light.imageset/Contents.json deleted file mode 100644 index 489b258d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"qr-code-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-thin.imageset/Contents.json deleted file mode 100644 index ce6666440..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"qr-code-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code.imageset/Contents.json deleted file mode 100644 index 742945182..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"qr-code.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-bold.imageset/Contents.json deleted file mode 100644 index 3bd512d3e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"question-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-duotone.imageset/Contents.json deleted file mode 100644 index 2a23c8000..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"question-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-fill.imageset/Contents.json deleted file mode 100644 index 828cdb620..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"question-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-light.imageset/Contents.json deleted file mode 100644 index 147d84e83..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"question-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-bold.imageset/Contents.json deleted file mode 100644 index 6f045ce97..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"question-mark-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-duotone.imageset/Contents.json deleted file mode 100644 index d14e1f229..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"question-mark-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-fill.imageset/Contents.json deleted file mode 100644 index 6ca945c7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"question-mark-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-light.imageset/Contents.json deleted file mode 100644 index 90b4eed67..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"question-mark-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-thin.imageset/Contents.json deleted file mode 100644 index 14a348ba1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"question-mark-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark.imageset/Contents.json deleted file mode 100644 index 9489e34dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"question-mark.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-thin.imageset/Contents.json deleted file mode 100644 index 28f8221f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"question-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question.imageset/Contents.json deleted file mode 100644 index f20673c6e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"question.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-bold.imageset/Contents.json deleted file mode 100644 index 84393fbce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"queue-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-duotone.imageset/Contents.json deleted file mode 100644 index b56ea5508..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"queue-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-fill.imageset/Contents.json deleted file mode 100644 index 46253b1d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"queue-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-light.imageset/Contents.json deleted file mode 100644 index 944ec4779..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"queue-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-thin.imageset/Contents.json deleted file mode 100644 index 52949f7e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"queue-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue.imageset/Contents.json deleted file mode 100644 index 5d811d79b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"queue.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-bold.imageset/Contents.json deleted file mode 100644 index 9c5c85cf3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"quotes-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-duotone.imageset/Contents.json deleted file mode 100644 index aad339e12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"quotes-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-fill.imageset/Contents.json deleted file mode 100644 index e1ba80e84..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"quotes-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-light.imageset/Contents.json deleted file mode 100644 index e6b8567a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"quotes-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-thin.imageset/Contents.json deleted file mode 100644 index 4f6545a59..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"quotes-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes.imageset/Contents.json deleted file mode 100644 index 57a719fb3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"quotes.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-bold.imageset/Contents.json deleted file mode 100644 index 2fd13f32e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rabbit-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-duotone.imageset/Contents.json deleted file mode 100644 index c6eadeffa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rabbit-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-fill.imageset/Contents.json deleted file mode 100644 index 13d184420..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rabbit-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-light.imageset/Contents.json deleted file mode 100644 index 8b63a28d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rabbit-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-thin.imageset/Contents.json deleted file mode 100644 index 02ecc350b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"rabbit-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit.imageset/Contents.json deleted file mode 100644 index 3f83535bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"rabbit.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-bold.imageset/Contents.json deleted file mode 100644 index 62a70a31b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"racquet-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-duotone.imageset/Contents.json deleted file mode 100644 index 88f80f45a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"racquet-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-fill.imageset/Contents.json deleted file mode 100644 index 353e27dab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"racquet-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-light.imageset/Contents.json deleted file mode 100644 index 1f3205a01..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"racquet-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-thin.imageset/Contents.json deleted file mode 100644 index 31f9391c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"racquet-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet.imageset/Contents.json deleted file mode 100644 index 67c7754f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"racquet.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-bold.imageset/Contents.json deleted file mode 100644 index 7fc9fbe48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"radical-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-duotone.imageset/Contents.json deleted file mode 100644 index 12cd7027b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"radical-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-fill.imageset/Contents.json deleted file mode 100644 index 942f1bfb1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"radical-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-light.imageset/Contents.json deleted file mode 100644 index 67465e136..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"radical-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-thin.imageset/Contents.json deleted file mode 100644 index 0bdaf3c2f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"radical-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical.imageset/Contents.json deleted file mode 100644 index 604308433..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"radical.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-bold.imageset/Contents.json deleted file mode 100644 index 5cc341c0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"radio-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-bold.imageset/Contents.json deleted file mode 100644 index bcf5d3c19..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"radio-button-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-duotone.imageset/Contents.json deleted file mode 100644 index 8fce5ed3e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"radio-button-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-fill.imageset/Contents.json deleted file mode 100644 index 948e48d17..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"radio-button-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-light.imageset/Contents.json deleted file mode 100644 index 191c6362e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"radio-button-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-thin.imageset/Contents.json deleted file mode 100644 index 742b14941..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"radio-button-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button.imageset/Contents.json deleted file mode 100644 index cb421a2a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"radio-button.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-duotone.imageset/Contents.json deleted file mode 100644 index 2f4b83465..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"radio-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-fill.imageset/Contents.json deleted file mode 100644 index 0f94f857f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"radio-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-light.imageset/Contents.json deleted file mode 100644 index e54cd0bc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"radio-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-thin.imageset/Contents.json deleted file mode 100644 index 5d2dcb930..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"radio-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio.imageset/Contents.json deleted file mode 100644 index d78c8afab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"radio.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-bold.imageset/Contents.json deleted file mode 100644 index 8a0d15f2a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"radioactive-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-duotone.imageset/Contents.json deleted file mode 100644 index 57a196e88..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"radioactive-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-fill.imageset/Contents.json deleted file mode 100644 index a947e7e48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"radioactive-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-light.imageset/Contents.json deleted file mode 100644 index 90b13668b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"radioactive-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-thin.imageset/Contents.json deleted file mode 100644 index d81820d83..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"radioactive-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive.imageset/Contents.json deleted file mode 100644 index 62c540210..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"radioactive.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-bold.imageset/Contents.json deleted file mode 100644 index 55b1a4e9b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rainbow-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-bold.imageset/Contents.json deleted file mode 100644 index 8af5f179a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"rainbow-cloud-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-duotone.imageset/Contents.json deleted file mode 100644 index d5a2d5761..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"rainbow-cloud-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-fill.imageset/Contents.json deleted file mode 100644 index 57651d158..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rainbow-cloud-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-light.imageset/Contents.json deleted file mode 100644 index 0ccd4a4d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rainbow-cloud-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-thin.imageset/Contents.json deleted file mode 100644 index 063ca53bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"rainbow-cloud-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud.imageset/Contents.json deleted file mode 100644 index f2e6cca54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rainbow-cloud.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-duotone.imageset/Contents.json deleted file mode 100644 index 70589d99e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"rainbow-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-fill.imageset/Contents.json deleted file mode 100644 index 807e679d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rainbow-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-light.imageset/Contents.json deleted file mode 100644 index f4c5e5513..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"rainbow-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-thin.imageset/Contents.json deleted file mode 100644 index 7892ebc6a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"rainbow-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow.imageset/Contents.json deleted file mode 100644 index 42d91130b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rainbow.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-bold.imageset/Contents.json deleted file mode 100644 index ce7050911..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"ranking-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-duotone.imageset/Contents.json deleted file mode 100644 index e668f3ea5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"ranking-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-fill.imageset/Contents.json deleted file mode 100644 index 6d4fa9760..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ranking-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-light.imageset/Contents.json deleted file mode 100644 index 39d216ca1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ranking-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-thin.imageset/Contents.json deleted file mode 100644 index 59456c748..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"ranking-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking.imageset/Contents.json deleted file mode 100644 index 5cb2b42ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"ranking.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-bold.imageset/Contents.json deleted file mode 100644 index f8ff3be69..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"read-cv-logo-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-duotone.imageset/Contents.json deleted file mode 100644 index d01368763..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"read-cv-logo-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-fill.imageset/Contents.json deleted file mode 100644 index cb7516b49..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"read-cv-logo-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-light.imageset/Contents.json deleted file mode 100644 index f92ee45a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"read-cv-logo-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-thin.imageset/Contents.json deleted file mode 100644 index 047896875..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"read-cv-logo-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo.imageset/Contents.json deleted file mode 100644 index bb0c30aa9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"read-cv-logo.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-bold.imageset/Contents.json deleted file mode 100644 index 5b9f0b759..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"receipt-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-duotone.imageset/Contents.json deleted file mode 100644 index 8a68ec130..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"receipt-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-fill.imageset/Contents.json deleted file mode 100644 index 02c4dd29e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"receipt-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-light.imageset/Contents.json deleted file mode 100644 index 48b54af4e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"receipt-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-thin.imageset/Contents.json deleted file mode 100644 index 89e0aef26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"receipt-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-bold.imageset/Contents.json deleted file mode 100644 index eaf9201fa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"receipt-x-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-duotone.imageset/Contents.json deleted file mode 100644 index ecb8189a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"receipt-x-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-fill.imageset/Contents.json deleted file mode 100644 index fc265b96a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"receipt-x-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-light.imageset/Contents.json deleted file mode 100644 index 79185d7ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"receipt-x-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-thin.imageset/Contents.json deleted file mode 100644 index 9e5801cb8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"receipt-x-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x.imageset/Contents.json deleted file mode 100644 index 75bbe590f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"receipt-x.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt.imageset/Contents.json deleted file mode 100644 index 96e8c0513..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"receipt.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-bold.imageset/Contents.json deleted file mode 100644 index 3151d0d8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"record-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-duotone.imageset/Contents.json deleted file mode 100644 index 0731b94f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"record-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-fill.imageset/Contents.json deleted file mode 100644 index e437b4fae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"record-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-light.imageset/Contents.json deleted file mode 100644 index c6781a6d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"record-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-thin.imageset/Contents.json deleted file mode 100644 index 412f652c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"record-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record.imageset/Contents.json deleted file mode 100644 index 7dd2f4124..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"record.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-bold.imageset/Contents.json deleted file mode 100644 index 142d652fe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rectangle-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-bold.imageset/Contents.json deleted file mode 100644 index dae4bcd66..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"rectangle-dashed-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-duotone.imageset/Contents.json deleted file mode 100644 index 73ff23e4a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"rectangle-dashed-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-fill.imageset/Contents.json deleted file mode 100644 index 512c2c7ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rectangle-dashed-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-light.imageset/Contents.json deleted file mode 100644 index 416f751b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"rectangle-dashed-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-thin.imageset/Contents.json deleted file mode 100644 index 9821dad10..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"rectangle-dashed-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed.imageset/Contents.json deleted file mode 100644 index cab236d78..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rectangle-dashed.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-duotone.imageset/Contents.json deleted file mode 100644 index f0b52c648..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"rectangle-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-fill.imageset/Contents.json deleted file mode 100644 index f287f50f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rectangle-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-light.imageset/Contents.json deleted file mode 100644 index 0c5f72448..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rectangle-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-thin.imageset/Contents.json deleted file mode 100644 index 0b7acc00b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rectangle-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle.imageset/Contents.json deleted file mode 100644 index 6c98b104e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"rectangle.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-bold.imageset/Contents.json deleted file mode 100644 index 2acc7d364..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"recycle-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-duotone.imageset/Contents.json deleted file mode 100644 index c54be869a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"recycle-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-fill.imageset/Contents.json deleted file mode 100644 index 8a12fbfc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"recycle-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-light.imageset/Contents.json deleted file mode 100644 index 5eee746f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"recycle-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-thin.imageset/Contents.json deleted file mode 100644 index 933a58979..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"recycle-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle.imageset/Contents.json deleted file mode 100644 index 2ff74d823..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"recycle.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-bold.imageset/Contents.json deleted file mode 100644 index f7c8aad08..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"reddit-logo-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-duotone.imageset/Contents.json deleted file mode 100644 index 3c71e71e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"reddit-logo-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-fill.imageset/Contents.json deleted file mode 100644 index 2ac5dbac3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"reddit-logo-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-light.imageset/Contents.json deleted file mode 100644 index d4b3299d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"reddit-logo-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-thin.imageset/Contents.json deleted file mode 100644 index 5a4a61595..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"reddit-logo-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo.imageset/Contents.json deleted file mode 100644 index c4bb3e0bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"reddit-logo.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-bold.imageset/Contents.json deleted file mode 100644 index 6b9a1ead0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"repeat-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-duotone.imageset/Contents.json deleted file mode 100644 index 756c9ab2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"repeat-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-fill.imageset/Contents.json deleted file mode 100644 index f2dde6b55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"repeat-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-light.imageset/Contents.json deleted file mode 100644 index ad5d1332e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"repeat-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-bold.imageset/Contents.json deleted file mode 100644 index 465589535..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"repeat-once-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-duotone.imageset/Contents.json deleted file mode 100644 index 107f7f26f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"repeat-once-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-fill.imageset/Contents.json deleted file mode 100644 index b434dcca0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"repeat-once-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-light.imageset/Contents.json deleted file mode 100644 index 56cd4aea2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"repeat-once-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-thin.imageset/Contents.json deleted file mode 100644 index 703a715e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"repeat-once-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once.imageset/Contents.json deleted file mode 100644 index a13ed556e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"repeat-once.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-thin.imageset/Contents.json deleted file mode 100644 index 7b9d0c275..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"repeat-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat.imageset/Contents.json deleted file mode 100644 index a3d69208d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"repeat.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-bold.imageset/Contents.json deleted file mode 100644 index 4880051d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"replit-logo-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-duotone.imageset/Contents.json deleted file mode 100644 index 1f0b9a1ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"replit-logo-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-fill.imageset/Contents.json deleted file mode 100644 index 4ee9e0df7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"replit-logo-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-light.imageset/Contents.json deleted file mode 100644 index 3f7923bcc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"replit-logo-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-thin.imageset/Contents.json deleted file mode 100644 index d3f11d12c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"replit-logo-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo.imageset/Contents.json deleted file mode 100644 index de0ab8354..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"replit-logo.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-bold.imageset/Contents.json deleted file mode 100644 index fc37aff7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"resize-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-duotone.imageset/Contents.json deleted file mode 100644 index 1ebe951c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"resize-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-fill.imageset/Contents.json deleted file mode 100644 index 48cbbb200..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"resize-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-light.imageset/Contents.json deleted file mode 100644 index bafbda6d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"resize-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-thin.imageset/Contents.json deleted file mode 100644 index ebb28c479..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"resize-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize.imageset/Contents.json deleted file mode 100644 index 1bedcd904..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"resize.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-bold.imageset/Contents.json deleted file mode 100644 index f879784c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"rewind-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-bold.imageset/Contents.json deleted file mode 100644 index 9670fe89a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"rewind-circle-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-duotone.imageset/Contents.json deleted file mode 100644 index 98d855460..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"rewind-circle-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-fill.imageset/Contents.json deleted file mode 100644 index b8b39c2dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"rewind-circle-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-light.imageset/Contents.json deleted file mode 100644 index f6736cadb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"rewind-circle-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-thin.imageset/Contents.json deleted file mode 100644 index 4e5aeee55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"rewind-circle-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle.imageset/Contents.json deleted file mode 100644 index a1b19aab7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rewind-circle.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-duotone.imageset/Contents.json deleted file mode 100644 index 979d6b021..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"rewind-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-fill.imageset/Contents.json deleted file mode 100644 index 764715ca6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rewind-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-light.imageset/Contents.json deleted file mode 100644 index 97884aa22..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rewind-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-thin.imageset/Contents.json deleted file mode 100644 index ac67a2ee8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"rewind-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind.imageset/Contents.json deleted file mode 100644 index e7df3f2dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"rewind.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-bold.imageset/Contents.json deleted file mode 100644 index 8562db34a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"road-horizon-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-duotone.imageset/Contents.json deleted file mode 100644 index 1322828da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"road-horizon-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-fill.imageset/Contents.json deleted file mode 100644 index d253fe426..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"road-horizon-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-light.imageset/Contents.json deleted file mode 100644 index 2abb7489c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"road-horizon-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-thin.imageset/Contents.json deleted file mode 100644 index 65ed5d1cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"road-horizon-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon.imageset/Contents.json deleted file mode 100644 index 1e1a64d2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"road-horizon.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-bold.imageset/Contents.json deleted file mode 100644 index 93b046955..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"robot-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-duotone.imageset/Contents.json deleted file mode 100644 index 56d12bbb7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"robot-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-fill.imageset/Contents.json deleted file mode 100644 index ed96c37a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"robot-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-light.imageset/Contents.json deleted file mode 100644 index db9f9f085..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"robot-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-thin.imageset/Contents.json deleted file mode 100644 index 3c4a94201..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"robot-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot.imageset/Contents.json deleted file mode 100644 index 99b5275db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"robot.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-bold.imageset/Contents.json deleted file mode 100644 index a80084dd4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rocket-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-duotone.imageset/Contents.json deleted file mode 100644 index ec725c20c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"rocket-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-fill.imageset/Contents.json deleted file mode 100644 index 8e9d6215c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rocket-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-bold.imageset/Contents.json deleted file mode 100644 index 15c78a716..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rocket-launch-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-duotone.imageset/Contents.json deleted file mode 100644 index d3b1597aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rocket-launch-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-fill.imageset/Contents.json deleted file mode 100644 index f3cd9b5f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rocket-launch-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-light.imageset/Contents.json deleted file mode 100644 index 148c80fe3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"rocket-launch-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-thin.imageset/Contents.json deleted file mode 100644 index 597556841..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rocket-launch-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch.imageset/Contents.json deleted file mode 100644 index 15250d7e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"rocket-launch.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-light.imageset/Contents.json deleted file mode 100644 index 4b6f7033e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rocket-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-thin.imageset/Contents.json deleted file mode 100644 index 71d8107fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"rocket-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket.imageset/Contents.json deleted file mode 100644 index 54b5d0337..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rocket.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-bold.imageset/Contents.json deleted file mode 100644 index 5706335a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rows-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-duotone.imageset/Contents.json deleted file mode 100644 index 1ff442bed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"rows-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-fill.imageset/Contents.json deleted file mode 100644 index e560137b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"rows-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-light.imageset/Contents.json deleted file mode 100644 index 0603a1e97..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"rows-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-bold.imageset/Contents.json deleted file mode 100644 index 2bc067c85..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"rows-plus-bottom-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-duotone.imageset/Contents.json deleted file mode 100644 index f3cebf12d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rows-plus-bottom-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-fill.imageset/Contents.json deleted file mode 100644 index eff45311b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rows-plus-bottom-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-light.imageset/Contents.json deleted file mode 100644 index 96bb919ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rows-plus-bottom-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-thin.imageset/Contents.json deleted file mode 100644 index 6fb363ca8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rows-plus-bottom-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom.imageset/Contents.json deleted file mode 100644 index 600361185..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"rows-plus-bottom.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-bold.imageset/Contents.json deleted file mode 100644 index 03a9c95f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rows-plus-top-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-duotone.imageset/Contents.json deleted file mode 100644 index efc302d3a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"rows-plus-top-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-fill.imageset/Contents.json deleted file mode 100644 index 3a101c441..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"rows-plus-top-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-light.imageset/Contents.json deleted file mode 100644 index 6561a41f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"rows-plus-top-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-thin.imageset/Contents.json deleted file mode 100644 index 1d83ef9f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"rows-plus-top-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top.imageset/Contents.json deleted file mode 100644 index 6a7fc8614..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"rows-plus-top.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-thin.imageset/Contents.json deleted file mode 100644 index d4d5cf8c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rows-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows.imageset/Contents.json deleted file mode 100644 index 27a3d3933..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rows.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-bold.imageset/Contents.json deleted file mode 100644 index 2c5f9baca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"rss-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-duotone.imageset/Contents.json deleted file mode 100644 index 374b7e48d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rss-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-fill.imageset/Contents.json deleted file mode 100644 index ee4aa8327..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"rss-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-light.imageset/Contents.json deleted file mode 100644 index 267883adf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"rss-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-bold.imageset/Contents.json deleted file mode 100644 index 61dabd071..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"rss-simple-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-duotone.imageset/Contents.json deleted file mode 100644 index 9f1f1d6b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rss-simple-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-fill.imageset/Contents.json deleted file mode 100644 index b4163c533..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rss-simple-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-light.imageset/Contents.json deleted file mode 100644 index 8559459c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"rss-simple-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-thin.imageset/Contents.json deleted file mode 100644 index 0b0a00481..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rss-simple-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple.imageset/Contents.json deleted file mode 100644 index 26d29b35f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"rss-simple.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-thin.imageset/Contents.json deleted file mode 100644 index 5a9c6b0fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rss-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss.imageset/Contents.json deleted file mode 100644 index 8e01effc6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"rss.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-bold.imageset/Contents.json deleted file mode 100644 index 0665c6e98..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"rug-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-duotone.imageset/Contents.json deleted file mode 100644 index 8466ebe92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"rug-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-fill.imageset/Contents.json deleted file mode 100644 index 3876b7d19..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"rug-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-light.imageset/Contents.json deleted file mode 100644 index f16dc3ff1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"rug-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-thin.imageset/Contents.json deleted file mode 100644 index 02b538019..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rug-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug.imageset/Contents.json deleted file mode 100644 index 531a35dc5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"rug.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-bold.imageset/Contents.json deleted file mode 100644 index f374f3c84..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"ruler-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-duotone.imageset/Contents.json deleted file mode 100644 index 55b175663..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ruler-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-fill.imageset/Contents.json deleted file mode 100644 index 59ca64fe0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"ruler-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-light.imageset/Contents.json deleted file mode 100644 index f349d75e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"ruler-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-thin.imageset/Contents.json deleted file mode 100644 index 3f38a7da8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ruler-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler.imageset/Contents.json deleted file mode 100644 index fea2a2a4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"ruler.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-bold.imageset/Contents.json deleted file mode 100644 index e8ba718c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"sailboat-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-duotone.imageset/Contents.json deleted file mode 100644 index 5895d7dc1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"sailboat-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-fill.imageset/Contents.json deleted file mode 100644 index 2ec709f71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"sailboat-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-light.imageset/Contents.json deleted file mode 100644 index ce8c2f0fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sailboat-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-thin.imageset/Contents.json deleted file mode 100644 index d235859b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sailboat-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat.imageset/Contents.json deleted file mode 100644 index 720c593d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sailboat.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-bold.imageset/Contents.json deleted file mode 100644 index f04821e9d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"scales-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-duotone.imageset/Contents.json deleted file mode 100644 index bb811e9c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"scales-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-fill.imageset/Contents.json deleted file mode 100644 index fcd458310..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"scales-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-light.imageset/Contents.json deleted file mode 100644 index b190ce099..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"scales-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-thin.imageset/Contents.json deleted file mode 100644 index ed494086f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"scales-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales.imageset/Contents.json deleted file mode 100644 index c2421426f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"scales.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-bold.imageset/Contents.json deleted file mode 100644 index 9491949f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"scan-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-duotone.imageset/Contents.json deleted file mode 100644 index a6ffd5a32..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"scan-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-fill.imageset/Contents.json deleted file mode 100644 index dc870fcae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"scan-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-light.imageset/Contents.json deleted file mode 100644 index 799c2eb62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"scan-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-bold.imageset/Contents.json deleted file mode 100644 index 7942e9f0c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"scan-smiley-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-duotone.imageset/Contents.json deleted file mode 100644 index 6b323c768..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"scan-smiley-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-fill.imageset/Contents.json deleted file mode 100644 index dfead0519..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"scan-smiley-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-light.imageset/Contents.json deleted file mode 100644 index f968ad682..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"scan-smiley-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-thin.imageset/Contents.json deleted file mode 100644 index 6ecd4a812..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"scan-smiley-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley.imageset/Contents.json deleted file mode 100644 index e1833ad10..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"scan-smiley.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-thin.imageset/Contents.json deleted file mode 100644 index c26042a52..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"scan-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan.imageset/Contents.json deleted file mode 100644 index 4dbee6897..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"scan.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-bold.imageset/Contents.json deleted file mode 100644 index d54ed1f8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"scissors-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-duotone.imageset/Contents.json deleted file mode 100644 index 5a6ce204c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"scissors-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-fill.imageset/Contents.json deleted file mode 100644 index 78f344b06..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"scissors-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-light.imageset/Contents.json deleted file mode 100644 index 3d79875cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"scissors-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-thin.imageset/Contents.json deleted file mode 100644 index 4cde8fca9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"scissors-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors.imageset/Contents.json deleted file mode 100644 index d65b00f08..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"scissors.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-bold.imageset/Contents.json deleted file mode 100644 index 0b8183b7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"scooter-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-duotone.imageset/Contents.json deleted file mode 100644 index dd88a777c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"scooter-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-fill.imageset/Contents.json deleted file mode 100644 index 099c803ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"scooter-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-light.imageset/Contents.json deleted file mode 100644 index 8090b9774..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"scooter-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-thin.imageset/Contents.json deleted file mode 100644 index f8e1f743a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"scooter-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter.imageset/Contents.json deleted file mode 100644 index d520f94cd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"scooter.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-bold.imageset/Contents.json deleted file mode 100644 index f11ac17ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"screencast-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-duotone.imageset/Contents.json deleted file mode 100644 index 3175ceca0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"screencast-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-fill.imageset/Contents.json deleted file mode 100644 index 91f452135..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"screencast-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-light.imageset/Contents.json deleted file mode 100644 index 8f0497cb5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"screencast-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-thin.imageset/Contents.json deleted file mode 100644 index 6bdf9f4c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"screencast-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast.imageset/Contents.json deleted file mode 100644 index 47b3fa5c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"screencast.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-bold.imageset/Contents.json deleted file mode 100644 index 8896c1dae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"screwdriver-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-duotone.imageset/Contents.json deleted file mode 100644 index 2ba11be2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"screwdriver-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-fill.imageset/Contents.json deleted file mode 100644 index 2b90f4ba7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"screwdriver-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-light.imageset/Contents.json deleted file mode 100644 index bb288d092..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"screwdriver-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-thin.imageset/Contents.json deleted file mode 100644 index 121d29bed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"screwdriver-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver.imageset/Contents.json deleted file mode 100644 index 1fa4bf033..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"screwdriver.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-bold.imageset/Contents.json deleted file mode 100644 index 31b72c269..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"scribble-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-duotone.imageset/Contents.json deleted file mode 100644 index 467297174..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"scribble-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-fill.imageset/Contents.json deleted file mode 100644 index 9c90f40de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"scribble-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-light.imageset/Contents.json deleted file mode 100644 index f47ae429d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"scribble-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-bold.imageset/Contents.json deleted file mode 100644 index ba84229c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"scribble-loop-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-duotone.imageset/Contents.json deleted file mode 100644 index ed3de5c6c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"scribble-loop-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-fill.imageset/Contents.json deleted file mode 100644 index aa57130b1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"scribble-loop-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-light.imageset/Contents.json deleted file mode 100644 index 85f891aad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"scribble-loop-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-thin.imageset/Contents.json deleted file mode 100644 index 121e2bec9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"scribble-loop-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop.imageset/Contents.json deleted file mode 100644 index 10e25b1ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"scribble-loop.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-thin.imageset/Contents.json deleted file mode 100644 index fcf243d99..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"scribble-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble.imageset/Contents.json deleted file mode 100644 index 2d1c6ae16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"scribble.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-bold.imageset/Contents.json deleted file mode 100644 index 76767e9ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"scroll-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-duotone.imageset/Contents.json deleted file mode 100644 index d6400fe55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"scroll-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-fill.imageset/Contents.json deleted file mode 100644 index 1a97fc1cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"scroll-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-light.imageset/Contents.json deleted file mode 100644 index def5f1329..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"scroll-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-thin.imageset/Contents.json deleted file mode 100644 index aa86bc25e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"scroll-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll.imageset/Contents.json deleted file mode 100644 index 263dc169e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"scroll.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-bold.imageset/Contents.json deleted file mode 100644 index f538493aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"seal-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-bold.imageset/Contents.json deleted file mode 100644 index 993829f5a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"seal-check-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-duotone.imageset/Contents.json deleted file mode 100644 index 5b1fff8ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"seal-check-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-fill.imageset/Contents.json deleted file mode 100644 index ffcaabdc7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"seal-check-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-light.imageset/Contents.json deleted file mode 100644 index c4ec64bd7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"seal-check-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-thin.imageset/Contents.json deleted file mode 100644 index f623bf685..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"seal-check-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check.imageset/Contents.json deleted file mode 100644 index a1e85741c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"seal-check.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-duotone.imageset/Contents.json deleted file mode 100644 index f9426bcd5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"seal-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-fill.imageset/Contents.json deleted file mode 100644 index 48d52ad04..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"seal-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-light.imageset/Contents.json deleted file mode 100644 index 8f8f6a856..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"seal-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-bold.imageset/Contents.json deleted file mode 100644 index 056f408f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"seal-percent-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-duotone.imageset/Contents.json deleted file mode 100644 index 97c6a3e5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"seal-percent-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-fill.imageset/Contents.json deleted file mode 100644 index 28674a69e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"seal-percent-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-light.imageset/Contents.json deleted file mode 100644 index 497593d44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"seal-percent-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-thin.imageset/Contents.json deleted file mode 100644 index 276a1f0f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"seal-percent-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent.imageset/Contents.json deleted file mode 100644 index eda684e54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"seal-percent.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-bold.imageset/Contents.json deleted file mode 100644 index 12ac6954a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"seal-question-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-duotone.imageset/Contents.json deleted file mode 100644 index 7b0e601ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"seal-question-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-fill.imageset/Contents.json deleted file mode 100644 index 1f7318588..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"seal-question-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-light.imageset/Contents.json deleted file mode 100644 index 7be9d6e83..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"seal-question-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-thin.imageset/Contents.json deleted file mode 100644 index 7b3737c06..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"seal-question-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question.imageset/Contents.json deleted file mode 100644 index c2377ac76..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"seal-question.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-thin.imageset/Contents.json deleted file mode 100644 index 89f12f655..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"seal-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-bold.imageset/Contents.json deleted file mode 100644 index c2963e5af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"seal-warning-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-duotone.imageset/Contents.json deleted file mode 100644 index 1ea138e3c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"seal-warning-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-fill.imageset/Contents.json deleted file mode 100644 index 7cbc21514..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"seal-warning-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-light.imageset/Contents.json deleted file mode 100644 index 3d6e09aa0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"seal-warning-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-thin.imageset/Contents.json deleted file mode 100644 index ce0d98c5f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"seal-warning-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning.imageset/Contents.json deleted file mode 100644 index b22a60c07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"seal-warning.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal.imageset/Contents.json deleted file mode 100644 index e84fbdc62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"seal.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-bold.imageset/Contents.json deleted file mode 100644 index 23e244a71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"seat-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-duotone.imageset/Contents.json deleted file mode 100644 index 0115fc1b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"seat-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-fill.imageset/Contents.json deleted file mode 100644 index e0a4ef9b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"seat-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-light.imageset/Contents.json deleted file mode 100644 index 0429dd0e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"seat-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-thin.imageset/Contents.json deleted file mode 100644 index 3858be2d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"seat-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat.imageset/Contents.json deleted file mode 100644 index d4ee4b80b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"seat.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-bold.imageset/Contents.json deleted file mode 100644 index f7f8441ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"seatbelt-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-duotone.imageset/Contents.json deleted file mode 100644 index e3ac9b1f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"seatbelt-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-fill.imageset/Contents.json deleted file mode 100644 index 60329cb61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"seatbelt-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-light.imageset/Contents.json deleted file mode 100644 index 59129ada6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"seatbelt-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-thin.imageset/Contents.json deleted file mode 100644 index 6186c663c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"seatbelt-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt.imageset/Contents.json deleted file mode 100644 index 9e9d658c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"seatbelt.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-bold.imageset/Contents.json deleted file mode 100644 index d5f55cec3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"security-camera-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-duotone.imageset/Contents.json deleted file mode 100644 index 3bac21fa5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"security-camera-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-fill.imageset/Contents.json deleted file mode 100644 index c10119ce5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"security-camera-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-light.imageset/Contents.json deleted file mode 100644 index ce0501142..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"security-camera-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-thin.imageset/Contents.json deleted file mode 100644 index 8714817d6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"security-camera-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera.imageset/Contents.json deleted file mode 100644 index c9068e4f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"security-camera.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-bold.imageset/Contents.json deleted file mode 100644 index 96af45631..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"selection-all-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-duotone.imageset/Contents.json deleted file mode 100644 index 7c6106a99..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"selection-all-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-fill.imageset/Contents.json deleted file mode 100644 index 95ca8d475..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"selection-all-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-light.imageset/Contents.json deleted file mode 100644 index 612c43cee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"selection-all-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-thin.imageset/Contents.json deleted file mode 100644 index f5c270c77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"selection-all-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all.imageset/Contents.json deleted file mode 100644 index b990c0969..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"selection-all.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-bold.imageset/Contents.json deleted file mode 100644 index e20a0526a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"selection-background-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-duotone.imageset/Contents.json deleted file mode 100644 index 29af89d3f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"selection-background-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-fill.imageset/Contents.json deleted file mode 100644 index 344976f1b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"selection-background-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-light.imageset/Contents.json deleted file mode 100644 index 128cf19ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"selection-background-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-thin.imageset/Contents.json deleted file mode 100644 index 84d523f53..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"selection-background-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background.imageset/Contents.json deleted file mode 100644 index e141e4744..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"selection-background.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-bold.imageset/Contents.json deleted file mode 100644 index 20b7cf882..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"selection-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-duotone.imageset/Contents.json deleted file mode 100644 index f5879c04e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"selection-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-fill.imageset/Contents.json deleted file mode 100644 index 47db045c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"selection-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-bold.imageset/Contents.json deleted file mode 100644 index a482af08c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"selection-foreground-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-duotone.imageset/Contents.json deleted file mode 100644 index f3780665b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"selection-foreground-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-fill.imageset/Contents.json deleted file mode 100644 index a992b20e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"selection-foreground-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-light.imageset/Contents.json deleted file mode 100644 index 7bf1bf25a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"selection-foreground-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-thin.imageset/Contents.json deleted file mode 100644 index d77884846..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"selection-foreground-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground.imageset/Contents.json deleted file mode 100644 index 48ae080fe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"selection-foreground.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-bold.imageset/Contents.json deleted file mode 100644 index 0ca755c90..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"selection-inverse-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-duotone.imageset/Contents.json deleted file mode 100644 index c8c81af36..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"selection-inverse-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-fill.imageset/Contents.json deleted file mode 100644 index 5fce29205..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"selection-inverse-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-light.imageset/Contents.json deleted file mode 100644 index a3f3f175c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"selection-inverse-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-thin.imageset/Contents.json deleted file mode 100644 index 0998b2102..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"selection-inverse-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse.imageset/Contents.json deleted file mode 100644 index e97a27ad8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"selection-inverse.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-light.imageset/Contents.json deleted file mode 100644 index cebe3e9a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"selection-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-bold.imageset/Contents.json deleted file mode 100644 index 8d268c3a9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"selection-plus-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-duotone.imageset/Contents.json deleted file mode 100644 index a8aca17b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"selection-plus-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-fill.imageset/Contents.json deleted file mode 100644 index 45a47c383..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"selection-plus-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-light.imageset/Contents.json deleted file mode 100644 index 73b24825a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"selection-plus-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-thin.imageset/Contents.json deleted file mode 100644 index 430b381f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"selection-plus-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus.imageset/Contents.json deleted file mode 100644 index 1496014ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"selection-plus.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-bold.imageset/Contents.json deleted file mode 100644 index d30ae3592..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"selection-slash-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-duotone.imageset/Contents.json deleted file mode 100644 index 64e45501c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"selection-slash-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-fill.imageset/Contents.json deleted file mode 100644 index 72317367a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"selection-slash-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-light.imageset/Contents.json deleted file mode 100644 index e3a3ec7b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"selection-slash-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-thin.imageset/Contents.json deleted file mode 100644 index 26d47bc47..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"selection-slash-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash.imageset/Contents.json deleted file mode 100644 index e22007de4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"selection-slash.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-thin.imageset/Contents.json deleted file mode 100644 index c33e6c957..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"selection-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection.imageset/Contents.json deleted file mode 100644 index 8db13f2ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"selection.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-bold.imageset/Contents.json deleted file mode 100644 index f8c437332..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"shapes-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-duotone.imageset/Contents.json deleted file mode 100644 index 42ccc5013..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"shapes-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-fill.imageset/Contents.json deleted file mode 100644 index 5cd8b55ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"shapes-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-light.imageset/Contents.json deleted file mode 100644 index 8850c5018..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"shapes-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-thin.imageset/Contents.json deleted file mode 100644 index 71f786883..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shapes-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes.imageset/Contents.json deleted file mode 100644 index 8f648e5db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shapes.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-bold.imageset/Contents.json deleted file mode 100644 index 423b62b81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"share-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-duotone.imageset/Contents.json deleted file mode 100644 index b0aa6e0b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"share-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-bold.imageset/Contents.json deleted file mode 100644 index 97f758e57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"share-fat-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-duotone.imageset/Contents.json deleted file mode 100644 index ecb9edb7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"share-fat-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-fill.imageset/Contents.json deleted file mode 100644 index 5da338df8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"share-fat-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-light.imageset/Contents.json deleted file mode 100644 index c3c3935ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"share-fat-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-thin.imageset/Contents.json deleted file mode 100644 index e15864870..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"share-fat-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat.imageset/Contents.json deleted file mode 100644 index c0bfb6649..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"share-fat.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fill.imageset/Contents.json deleted file mode 100644 index b8b6f951d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"share-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-light.imageset/Contents.json deleted file mode 100644 index 70a8f8e71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"share-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-bold.imageset/Contents.json deleted file mode 100644 index 134841c99..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"share-network-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-duotone.imageset/Contents.json deleted file mode 100644 index 3cdadb181..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"share-network-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-fill.imageset/Contents.json deleted file mode 100644 index 082d61f68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"share-network-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-light.imageset/Contents.json deleted file mode 100644 index c7e10ee4c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"share-network-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-thin.imageset/Contents.json deleted file mode 100644 index 3798dc6d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"share-network-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network.imageset/Contents.json deleted file mode 100644 index a6a90576b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"share-network.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-thin.imageset/Contents.json deleted file mode 100644 index af4c1827d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"share-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share.imageset/Contents.json deleted file mode 100644 index 3db17eb74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"share.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-bold.imageset/Contents.json deleted file mode 100644 index e1453cb9c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shield-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-bold.imageset/Contents.json deleted file mode 100644 index ea936c967..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"shield-check-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-duotone.imageset/Contents.json deleted file mode 100644 index fc1b898c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shield-check-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-fill.imageset/Contents.json deleted file mode 100644 index d3f91fc77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"shield-check-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-light.imageset/Contents.json deleted file mode 100644 index b3a59c9e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shield-check-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-thin.imageset/Contents.json deleted file mode 100644 index 46c04422f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"shield-check-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check.imageset/Contents.json deleted file mode 100644 index 984f4ea4f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"shield-check.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-bold.imageset/Contents.json deleted file mode 100644 index 589b25ad4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shield-checkered-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-duotone.imageset/Contents.json deleted file mode 100644 index c5d57e04e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shield-checkered-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-fill.imageset/Contents.json deleted file mode 100644 index 72620a222..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shield-checkered-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-light.imageset/Contents.json deleted file mode 100644 index e8ff30a09..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shield-checkered-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-thin.imageset/Contents.json deleted file mode 100644 index 35c30eb36..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shield-checkered-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered.imageset/Contents.json deleted file mode 100644 index 291d4f6ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"shield-checkered.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-bold.imageset/Contents.json deleted file mode 100644 index e12836774..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shield-chevron-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-duotone.imageset/Contents.json deleted file mode 100644 index a0958b7c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shield-chevron-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-fill.imageset/Contents.json deleted file mode 100644 index b96a15aff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shield-chevron-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-light.imageset/Contents.json deleted file mode 100644 index 0b5f7a794..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shield-chevron-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-thin.imageset/Contents.json deleted file mode 100644 index 17512163d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shield-chevron-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron.imageset/Contents.json deleted file mode 100644 index 80d2bfad6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"shield-chevron.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-duotone.imageset/Contents.json deleted file mode 100644 index b9a87bce9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shield-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-fill.imageset/Contents.json deleted file mode 100644 index ec9cfef33..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shield-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-light.imageset/Contents.json deleted file mode 100644 index b12716fe5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shield-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-bold.imageset/Contents.json deleted file mode 100644 index efbcf66ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"shield-plus-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-duotone.imageset/Contents.json deleted file mode 100644 index 0ed496799..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"shield-plus-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-fill.imageset/Contents.json deleted file mode 100644 index a64a476b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"shield-plus-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-light.imageset/Contents.json deleted file mode 100644 index 61fabd9a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shield-plus-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-thin.imageset/Contents.json deleted file mode 100644 index aaa81b0f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"shield-plus-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus.imageset/Contents.json deleted file mode 100644 index 489719654..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shield-plus.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-bold.imageset/Contents.json deleted file mode 100644 index a4ab3488a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shield-slash-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-duotone.imageset/Contents.json deleted file mode 100644 index c383084bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"shield-slash-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-fill.imageset/Contents.json deleted file mode 100644 index ba3eabf32..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shield-slash-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-light.imageset/Contents.json deleted file mode 100644 index 3086db09e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"shield-slash-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-thin.imageset/Contents.json deleted file mode 100644 index 5b57d7f1b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shield-slash-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash.imageset/Contents.json deleted file mode 100644 index bfc92aff7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shield-slash.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-bold.imageset/Contents.json deleted file mode 100644 index 4e918919a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"shield-star-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-duotone.imageset/Contents.json deleted file mode 100644 index a708ea198..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shield-star-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-fill.imageset/Contents.json deleted file mode 100644 index 55f54eeb4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shield-star-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-light.imageset/Contents.json deleted file mode 100644 index 2bd5bb559..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"shield-star-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-thin.imageset/Contents.json deleted file mode 100644 index d7a7b03c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"shield-star-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star.imageset/Contents.json deleted file mode 100644 index 2c53a9f64..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shield-star.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-thin.imageset/Contents.json deleted file mode 100644 index 72f809db5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shield-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-bold.imageset/Contents.json deleted file mode 100644 index 72a6c7758..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"shield-warning-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-duotone.imageset/Contents.json deleted file mode 100644 index 8f49c1016..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"shield-warning-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-fill.imageset/Contents.json deleted file mode 100644 index ecbd01e28..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shield-warning-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-light.imageset/Contents.json deleted file mode 100644 index 261e5724c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shield-warning-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-thin.imageset/Contents.json deleted file mode 100644 index beba89bf8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shield-warning-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning.imageset/Contents.json deleted file mode 100644 index cdb9c82ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"shield-warning.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield.imageset/Contents.json deleted file mode 100644 index 5387e35aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shield.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-bold.imageset/Contents.json deleted file mode 100644 index 76af4b411..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"shipping-container-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-duotone.imageset/Contents.json deleted file mode 100644 index aa4677f71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shipping-container-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-fill.imageset/Contents.json deleted file mode 100644 index 6a6a8687c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shipping-container-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-light.imageset/Contents.json deleted file mode 100644 index 4e1a4442d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"shipping-container-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-thin.imageset/Contents.json deleted file mode 100644 index 95d758ff6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"shipping-container-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container.imageset/Contents.json deleted file mode 100644 index 6d0ff506b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shipping-container.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-bold.imageset/Contents.json deleted file mode 100644 index 82ffd96d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shirt-folded-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-duotone.imageset/Contents.json deleted file mode 100644 index 811388ddb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shirt-folded-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-fill.imageset/Contents.json deleted file mode 100644 index 6babdd7e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"shirt-folded-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-light.imageset/Contents.json deleted file mode 100644 index ed63f5753..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shirt-folded-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-thin.imageset/Contents.json deleted file mode 100644 index 090eafe1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"shirt-folded-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded.imageset/Contents.json deleted file mode 100644 index ffdce86f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shirt-folded.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-bold.imageset/Contents.json deleted file mode 100644 index 5a44b34e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shooting-star-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-duotone.imageset/Contents.json deleted file mode 100644 index 33884dca4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shooting-star-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-fill.imageset/Contents.json deleted file mode 100644 index 0497adb17..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shooting-star-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-light.imageset/Contents.json deleted file mode 100644 index 81ebea20c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"shooting-star-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-thin.imageset/Contents.json deleted file mode 100644 index bd49f979d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"shooting-star-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star.imageset/Contents.json deleted file mode 100644 index 5083d72a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"shooting-star.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-bold.imageset/Contents.json deleted file mode 100644 index 7ecefc4b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shopping-bag-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-duotone.imageset/Contents.json deleted file mode 100644 index d83b14dba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"shopping-bag-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-fill.imageset/Contents.json deleted file mode 100644 index ae73ccc54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shopping-bag-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-light.imageset/Contents.json deleted file mode 100644 index d4d4a7375..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shopping-bag-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-bold.imageset/Contents.json deleted file mode 100644 index 1c3d6f709..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shopping-bag-open-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-duotone.imageset/Contents.json deleted file mode 100644 index c8f919e7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"shopping-bag-open-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-fill.imageset/Contents.json deleted file mode 100644 index a69d17a54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"shopping-bag-open-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-light.imageset/Contents.json deleted file mode 100644 index 2f812bbc8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shopping-bag-open-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-thin.imageset/Contents.json deleted file mode 100644 index e52a187eb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shopping-bag-open-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open.imageset/Contents.json deleted file mode 100644 index 12cb530d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"shopping-bag-open.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-thin.imageset/Contents.json deleted file mode 100644 index 790599ce9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shopping-bag-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag.imageset/Contents.json deleted file mode 100644 index 772a44b36..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"shopping-bag.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-bold.imageset/Contents.json deleted file mode 100644 index 0dc409bc0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"shopping-cart-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-duotone.imageset/Contents.json deleted file mode 100644 index dc1eb5a50..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shopping-cart-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-fill.imageset/Contents.json deleted file mode 100644 index d74dab40a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shopping-cart-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-light.imageset/Contents.json deleted file mode 100644 index 37c375a44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"shopping-cart-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-bold.imageset/Contents.json deleted file mode 100644 index dbb487cf8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"shopping-cart-simple-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-duotone.imageset/Contents.json deleted file mode 100644 index 17c51fc36..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shopping-cart-simple-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-fill.imageset/Contents.json deleted file mode 100644 index 1458580e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"shopping-cart-simple-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-light.imageset/Contents.json deleted file mode 100644 index 00f1985ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shopping-cart-simple-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-thin.imageset/Contents.json deleted file mode 100644 index 0f72abb41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"shopping-cart-simple-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple.imageset/Contents.json deleted file mode 100644 index bf8d274be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"shopping-cart-simple.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-thin.imageset/Contents.json deleted file mode 100644 index 1623f5cf3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"shopping-cart-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart.imageset/Contents.json deleted file mode 100644 index 82f8a3374..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"shopping-cart.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-bold.imageset/Contents.json deleted file mode 100644 index 1e28fc2ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shovel-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-duotone.imageset/Contents.json deleted file mode 100644 index 3ed9f6946..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"shovel-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-fill.imageset/Contents.json deleted file mode 100644 index 1ec0fbc37..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"shovel-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-light.imageset/Contents.json deleted file mode 100644 index 32753b091..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"shovel-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-thin.imageset/Contents.json deleted file mode 100644 index d3c632462..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shovel-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel.imageset/Contents.json deleted file mode 100644 index a5a7317ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shovel.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-bold.imageset/Contents.json deleted file mode 100644 index 26b0ab952..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"shower-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-duotone.imageset/Contents.json deleted file mode 100644 index de9694935..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shower-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-fill.imageset/Contents.json deleted file mode 100644 index 87f935ca7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"shower-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-light.imageset/Contents.json deleted file mode 100644 index a4e873730..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shower-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-thin.imageset/Contents.json deleted file mode 100644 index bac4e003c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shower-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower.imageset/Contents.json deleted file mode 100644 index de43d24ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shower.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-bold.imageset/Contents.json deleted file mode 100644 index 533047972..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shrimp-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-duotone.imageset/Contents.json deleted file mode 100644 index a2309f835..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shrimp-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-fill.imageset/Contents.json deleted file mode 100644 index a80acd65a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shrimp-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-light.imageset/Contents.json deleted file mode 100644 index 5bc32486f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shrimp-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-thin.imageset/Contents.json deleted file mode 100644 index 2e1a53eef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"shrimp-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp.imageset/Contents.json deleted file mode 100644 index 61dd0f24f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shrimp.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-bold.imageset/Contents.json deleted file mode 100644 index 2809b93b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shuffle-angular-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-duotone.imageset/Contents.json deleted file mode 100644 index c88f8ebaf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"shuffle-angular-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-fill.imageset/Contents.json deleted file mode 100644 index a51a8748a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"shuffle-angular-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-light.imageset/Contents.json deleted file mode 100644 index 7ac497b1b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"shuffle-angular-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-thin.imageset/Contents.json deleted file mode 100644 index 06686343d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shuffle-angular-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular.imageset/Contents.json deleted file mode 100644 index 5c17da83f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"shuffle-angular.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-bold.imageset/Contents.json deleted file mode 100644 index 8a96aabc4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"shuffle-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-duotone.imageset/Contents.json deleted file mode 100644 index 0d3127273..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shuffle-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-fill.imageset/Contents.json deleted file mode 100644 index c1e13bdb9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"shuffle-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-light.imageset/Contents.json deleted file mode 100644 index 0263e2cc9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"shuffle-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-bold.imageset/Contents.json deleted file mode 100644 index 676a54e1a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shuffle-simple-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-duotone.imageset/Contents.json deleted file mode 100644 index bd7c9d6a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shuffle-simple-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-fill.imageset/Contents.json deleted file mode 100644 index c05924601..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"shuffle-simple-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-light.imageset/Contents.json deleted file mode 100644 index 2eca3629c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"shuffle-simple-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-thin.imageset/Contents.json deleted file mode 100644 index 0a2f6f738..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"shuffle-simple-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple.imageset/Contents.json deleted file mode 100644 index f5bf06dc0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"shuffle-simple.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-thin.imageset/Contents.json deleted file mode 100644 index e1b985e4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"shuffle-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle.imageset/Contents.json deleted file mode 100644 index 96418ac8e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"shuffle.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-bold.imageset/Contents.json deleted file mode 100644 index 64475edfe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sidebar-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-duotone.imageset/Contents.json deleted file mode 100644 index 1720daf2b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sidebar-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-fill.imageset/Contents.json deleted file mode 100644 index 31a083ab8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"sidebar-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-light.imageset/Contents.json deleted file mode 100644 index 83fb84d30..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sidebar-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-bold.imageset/Contents.json deleted file mode 100644 index 338de0452..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"sidebar-simple-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-duotone.imageset/Contents.json deleted file mode 100644 index ffee8c884..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sidebar-simple-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-fill.imageset/Contents.json deleted file mode 100644 index 3fc11b608..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sidebar-simple-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-light.imageset/Contents.json deleted file mode 100644 index a169dbc21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sidebar-simple-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-thin.imageset/Contents.json deleted file mode 100644 index 3f0e626d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sidebar-simple-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple.imageset/Contents.json deleted file mode 100644 index 71514ef59..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sidebar-simple.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-thin.imageset/Contents.json deleted file mode 100644 index 3d7febfa3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sidebar-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar.imageset/Contents.json deleted file mode 100644 index decd64853..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sidebar.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-bold.imageset/Contents.json deleted file mode 100644 index 2b6b26b8d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sigma-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-duotone.imageset/Contents.json deleted file mode 100644 index 2eb7f5a6e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"sigma-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-fill.imageset/Contents.json deleted file mode 100644 index 898ad7468..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"sigma-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-light.imageset/Contents.json deleted file mode 100644 index 8dac26d4a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sigma-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-thin.imageset/Contents.json deleted file mode 100644 index 744bff878..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"sigma-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma.imageset/Contents.json deleted file mode 100644 index a935422e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sigma.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-bold.imageset/Contents.json deleted file mode 100644 index 066db7107..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sign-in-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-duotone.imageset/Contents.json deleted file mode 100644 index 875e5078b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sign-in-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-fill.imageset/Contents.json deleted file mode 100644 index b30720de6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sign-in-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-light.imageset/Contents.json deleted file mode 100644 index 53c77a8aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sign-in-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-thin.imageset/Contents.json deleted file mode 100644 index 868cac273..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sign-in-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in.imageset/Contents.json deleted file mode 100644 index 03b7347df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"sign-in.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-bold.imageset/Contents.json deleted file mode 100644 index 16a8d3911..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sign-out-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-duotone.imageset/Contents.json deleted file mode 100644 index 569d383c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sign-out-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-fill.imageset/Contents.json deleted file mode 100644 index 3706ac36a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"sign-out-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-light.imageset/Contents.json deleted file mode 100644 index df175611f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sign-out-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-thin.imageset/Contents.json deleted file mode 100644 index d793e1738..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sign-out-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out.imageset/Contents.json deleted file mode 100644 index 52672875f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"sign-out.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-bold.imageset/Contents.json deleted file mode 100644 index 623b90463..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"signature-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-duotone.imageset/Contents.json deleted file mode 100644 index 76ab72d22..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"signature-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-fill.imageset/Contents.json deleted file mode 100644 index 2a10f4eff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"signature-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-light.imageset/Contents.json deleted file mode 100644 index 6b15699f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"signature-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-thin.imageset/Contents.json deleted file mode 100644 index 84c1f4c4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"signature-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature.imageset/Contents.json deleted file mode 100644 index 4c4e17f17..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"signature.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-bold.imageset/Contents.json deleted file mode 100644 index bf5fdcbb2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"signpost-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-duotone.imageset/Contents.json deleted file mode 100644 index 9e68131dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"signpost-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-fill.imageset/Contents.json deleted file mode 100644 index f9ea510f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"signpost-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-light.imageset/Contents.json deleted file mode 100644 index 27a6fbd4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"signpost-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-thin.imageset/Contents.json deleted file mode 100644 index fd9df2d73..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"signpost-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost.imageset/Contents.json deleted file mode 100644 index ed09dd026..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"signpost.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-bold.imageset/Contents.json deleted file mode 100644 index 5417e5bf9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sim-card-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-duotone.imageset/Contents.json deleted file mode 100644 index 7e3107dca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sim-card-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-fill.imageset/Contents.json deleted file mode 100644 index 4274376c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"sim-card-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-light.imageset/Contents.json deleted file mode 100644 index c18911b72..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"sim-card-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-thin.imageset/Contents.json deleted file mode 100644 index d34b96bdb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sim-card-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card.imageset/Contents.json deleted file mode 100644 index 164151c57..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sim-card.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-bold.imageset/Contents.json deleted file mode 100644 index 12096ed05..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"siren-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-duotone.imageset/Contents.json deleted file mode 100644 index ee4b40422..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"siren-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-fill.imageset/Contents.json deleted file mode 100644 index b2461feae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"siren-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-light.imageset/Contents.json deleted file mode 100644 index 80bd34f0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"siren-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-thin.imageset/Contents.json deleted file mode 100644 index 0a2689b5a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"siren-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren.imageset/Contents.json deleted file mode 100644 index 23eb945a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"siren.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-bold.imageset/Contents.json deleted file mode 100644 index 3587cdcab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sketch-logo-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-duotone.imageset/Contents.json deleted file mode 100644 index 4df3a1af8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sketch-logo-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-fill.imageset/Contents.json deleted file mode 100644 index b5cd1f662..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sketch-logo-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-light.imageset/Contents.json deleted file mode 100644 index bb4d7a8cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sketch-logo-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-thin.imageset/Contents.json deleted file mode 100644 index 75e9adad5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sketch-logo-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo.imageset/Contents.json deleted file mode 100644 index b41e35759..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sketch-logo.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-bold.imageset/Contents.json deleted file mode 100644 index c9e903848..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"skip-back-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-bold.imageset/Contents.json deleted file mode 100644 index 6f34ba80d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"skip-back-circle-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-duotone.imageset/Contents.json deleted file mode 100644 index ecd16f339..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"skip-back-circle-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-fill.imageset/Contents.json deleted file mode 100644 index 24d5dd71c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"skip-back-circle-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-light.imageset/Contents.json deleted file mode 100644 index 98d17fdc5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"skip-back-circle-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-thin.imageset/Contents.json deleted file mode 100644 index 8cacb4ffe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"skip-back-circle-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle.imageset/Contents.json deleted file mode 100644 index 0011f49cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"skip-back-circle.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-duotone.imageset/Contents.json deleted file mode 100644 index 85564d416..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"skip-back-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-fill.imageset/Contents.json deleted file mode 100644 index 02cea549e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"skip-back-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-light.imageset/Contents.json deleted file mode 100644 index 38c6acc79..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"skip-back-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-thin.imageset/Contents.json deleted file mode 100644 index 4cb6c93c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"skip-back-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back.imageset/Contents.json deleted file mode 100644 index 43f9163f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"skip-back.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-bold.imageset/Contents.json deleted file mode 100644 index 59d3599e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"skip-forward-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-bold.imageset/Contents.json deleted file mode 100644 index 7b00d8e50..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"skip-forward-circle-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-duotone.imageset/Contents.json deleted file mode 100644 index 326cfe66f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"skip-forward-circle-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-fill.imageset/Contents.json deleted file mode 100644 index 00aaddd6c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"skip-forward-circle-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-light.imageset/Contents.json deleted file mode 100644 index 64fab40a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"skip-forward-circle-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-thin.imageset/Contents.json deleted file mode 100644 index 2d3ce3cf4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"skip-forward-circle-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle.imageset/Contents.json deleted file mode 100644 index 176d41087..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"skip-forward-circle.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-duotone.imageset/Contents.json deleted file mode 100644 index 876f2fdcc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"skip-forward-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-fill.imageset/Contents.json deleted file mode 100644 index 9e1f10527..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"skip-forward-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-light.imageset/Contents.json deleted file mode 100644 index 57335e00f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"skip-forward-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-thin.imageset/Contents.json deleted file mode 100644 index a413970e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"skip-forward-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward.imageset/Contents.json deleted file mode 100644 index e04e3262d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"skip-forward.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-bold.imageset/Contents.json deleted file mode 100644 index 4d7e6627e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"skull-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-duotone.imageset/Contents.json deleted file mode 100644 index 5f8d7dfe9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"skull-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-fill.imageset/Contents.json deleted file mode 100644 index d8d31554f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"skull-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-light.imageset/Contents.json deleted file mode 100644 index 335c74d01..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"skull-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-thin.imageset/Contents.json deleted file mode 100644 index 71d33e208..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"skull-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull.imageset/Contents.json deleted file mode 100644 index 78a662b92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"skull.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-bold.imageset/Contents.json deleted file mode 100644 index e860013a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"skype-logo-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-duotone.imageset/Contents.json deleted file mode 100644 index 03d5826db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"skype-logo-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-fill.imageset/Contents.json deleted file mode 100644 index c0a0a6657..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"skype-logo-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-light.imageset/Contents.json deleted file mode 100644 index 8d3a7aa05..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"skype-logo-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-thin.imageset/Contents.json deleted file mode 100644 index 2a21f2eab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"skype-logo-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo.imageset/Contents.json deleted file mode 100644 index f6233c7c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"skype-logo.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-bold.imageset/Contents.json deleted file mode 100644 index 73523d3dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"slack-logo-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-duotone.imageset/Contents.json deleted file mode 100644 index 1200415e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"slack-logo-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-fill.imageset/Contents.json deleted file mode 100644 index 107b42ebe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"slack-logo-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-light.imageset/Contents.json deleted file mode 100644 index df718a0d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"slack-logo-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-thin.imageset/Contents.json deleted file mode 100644 index b3e1c723b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"slack-logo-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo.imageset/Contents.json deleted file mode 100644 index dd8c5c80c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"slack-logo.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-bold.imageset/Contents.json deleted file mode 100644 index 9d3f51646..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"sliders-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-duotone.imageset/Contents.json deleted file mode 100644 index 92594453c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sliders-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-fill.imageset/Contents.json deleted file mode 100644 index e4f53ea51..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sliders-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-bold.imageset/Contents.json deleted file mode 100644 index 70ae09d13..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sliders-horizontal-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-duotone.imageset/Contents.json deleted file mode 100644 index 88f9807dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"sliders-horizontal-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-fill.imageset/Contents.json deleted file mode 100644 index 6c433fc2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sliders-horizontal-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-light.imageset/Contents.json deleted file mode 100644 index 9345be06f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sliders-horizontal-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-thin.imageset/Contents.json deleted file mode 100644 index c78f304c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sliders-horizontal-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal.imageset/Contents.json deleted file mode 100644 index 81b966c2a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sliders-horizontal.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-light.imageset/Contents.json deleted file mode 100644 index dea051ace..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"sliders-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-thin.imageset/Contents.json deleted file mode 100644 index b829d34ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sliders-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders.imageset/Contents.json deleted file mode 100644 index f728f02be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"sliders.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-bold.imageset/Contents.json deleted file mode 100644 index 7bbe07571..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"slideshow-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-duotone.imageset/Contents.json deleted file mode 100644 index 52b2b8aed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"slideshow-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-fill.imageset/Contents.json deleted file mode 100644 index 98f3fe6c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"slideshow-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-light.imageset/Contents.json deleted file mode 100644 index f12f93726..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"slideshow-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-thin.imageset/Contents.json deleted file mode 100644 index 41fb80fbd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"slideshow-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow.imageset/Contents.json deleted file mode 100644 index 362abfeb2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"slideshow.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-bold.imageset/Contents.json deleted file mode 100644 index 1a6337479..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"smiley-angry-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-duotone.imageset/Contents.json deleted file mode 100644 index 00521b845..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"smiley-angry-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-fill.imageset/Contents.json deleted file mode 100644 index c4ba1e11d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"smiley-angry-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-light.imageset/Contents.json deleted file mode 100644 index ae8422876..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"smiley-angry-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-thin.imageset/Contents.json deleted file mode 100644 index b71b1dcea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"smiley-angry-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry.imageset/Contents.json deleted file mode 100644 index e6b76e326..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"smiley-angry.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-bold.imageset/Contents.json deleted file mode 100644 index a888b925e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"smiley-blank-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-duotone.imageset/Contents.json deleted file mode 100644 index a9028a21d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"smiley-blank-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-fill.imageset/Contents.json deleted file mode 100644 index 31d54cd39..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"smiley-blank-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-light.imageset/Contents.json deleted file mode 100644 index d88de240a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"smiley-blank-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-thin.imageset/Contents.json deleted file mode 100644 index 85e37723a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"smiley-blank-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank.imageset/Contents.json deleted file mode 100644 index 441cae7c1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"smiley-blank.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-bold.imageset/Contents.json deleted file mode 100644 index 2450b25a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"smiley-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-duotone.imageset/Contents.json deleted file mode 100644 index a79dc7206..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"smiley-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-fill.imageset/Contents.json deleted file mode 100644 index 7246419bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"smiley-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-light.imageset/Contents.json deleted file mode 100644 index 024702d77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"smiley-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-bold.imageset/Contents.json deleted file mode 100644 index 2a30f8dd6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"smiley-meh-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-duotone.imageset/Contents.json deleted file mode 100644 index 14b8898f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"smiley-meh-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-fill.imageset/Contents.json deleted file mode 100644 index db2bf2b1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"smiley-meh-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-light.imageset/Contents.json deleted file mode 100644 index 0343562c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"smiley-meh-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-thin.imageset/Contents.json deleted file mode 100644 index 3fd512658..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"smiley-meh-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh.imageset/Contents.json deleted file mode 100644 index fc4966581..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"smiley-meh.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-bold.imageset/Contents.json deleted file mode 100644 index 20ad80036..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"smiley-melting-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-duotone.imageset/Contents.json deleted file mode 100644 index 1f4fa0048..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"smiley-melting-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-fill.imageset/Contents.json deleted file mode 100644 index 257e1803f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"smiley-melting-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-light.imageset/Contents.json deleted file mode 100644 index 059427cc0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"smiley-melting-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-thin.imageset/Contents.json deleted file mode 100644 index 2fb6f6f38..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"smiley-melting-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting.imageset/Contents.json deleted file mode 100644 index 07f46225c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"smiley-melting.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-bold.imageset/Contents.json deleted file mode 100644 index 9c4b2783f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"smiley-nervous-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-duotone.imageset/Contents.json deleted file mode 100644 index 0c9c2d38d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"smiley-nervous-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-fill.imageset/Contents.json deleted file mode 100644 index 1f2b982a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"smiley-nervous-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-light.imageset/Contents.json deleted file mode 100644 index 3089fa5b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"smiley-nervous-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-thin.imageset/Contents.json deleted file mode 100644 index 8ea2166f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"smiley-nervous-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous.imageset/Contents.json deleted file mode 100644 index 6fe0a37a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"smiley-nervous.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-bold.imageset/Contents.json deleted file mode 100644 index 48bcfe8b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"smiley-sad-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-duotone.imageset/Contents.json deleted file mode 100644 index 9efb6c509..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"smiley-sad-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-fill.imageset/Contents.json deleted file mode 100644 index 9f4367417..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"smiley-sad-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-light.imageset/Contents.json deleted file mode 100644 index a26d2dedb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"smiley-sad-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-thin.imageset/Contents.json deleted file mode 100644 index 12d9c1de9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"smiley-sad-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad.imageset/Contents.json deleted file mode 100644 index 7a41182ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"smiley-sad.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-bold.imageset/Contents.json deleted file mode 100644 index 7d8fe3fe6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"smiley-sticker-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-duotone.imageset/Contents.json deleted file mode 100644 index 3fe9971f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"smiley-sticker-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-fill.imageset/Contents.json deleted file mode 100644 index a6bc871d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"smiley-sticker-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-light.imageset/Contents.json deleted file mode 100644 index b76b022ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"smiley-sticker-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-thin.imageset/Contents.json deleted file mode 100644 index 31ede6b02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"smiley-sticker-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker.imageset/Contents.json deleted file mode 100644 index 3f6f2fc1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"smiley-sticker.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-thin.imageset/Contents.json deleted file mode 100644 index 613931274..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"smiley-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-bold.imageset/Contents.json deleted file mode 100644 index 64ec0abed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"smiley-wink-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-duotone.imageset/Contents.json deleted file mode 100644 index e0cc02050..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"smiley-wink-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-fill.imageset/Contents.json deleted file mode 100644 index e1f945c9c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"smiley-wink-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-light.imageset/Contents.json deleted file mode 100644 index f0fcceabf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"smiley-wink-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-thin.imageset/Contents.json deleted file mode 100644 index 01c8eee63..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"smiley-wink-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink.imageset/Contents.json deleted file mode 100644 index b74c0bad2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"smiley-wink.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-bold.imageset/Contents.json deleted file mode 100644 index 88fc68177..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"smiley-x-eyes-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-duotone.imageset/Contents.json deleted file mode 100644 index d7e8c07fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"smiley-x-eyes-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-fill.imageset/Contents.json deleted file mode 100644 index 34d12fbe3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"smiley-x-eyes-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-light.imageset/Contents.json deleted file mode 100644 index d9f7a1611..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"smiley-x-eyes-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-thin.imageset/Contents.json deleted file mode 100644 index 98e3da2e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"smiley-x-eyes-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes.imageset/Contents.json deleted file mode 100644 index 564680106..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"smiley-x-eyes.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley.imageset/Contents.json deleted file mode 100644 index ec361b4ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"smiley.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-bold.imageset/Contents.json deleted file mode 100644 index fcf40ff8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"snapchat-logo-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-duotone.imageset/Contents.json deleted file mode 100644 index d0f382514..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"snapchat-logo-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-fill.imageset/Contents.json deleted file mode 100644 index 8d46025a5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"snapchat-logo-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-light.imageset/Contents.json deleted file mode 100644 index 088ff607b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"snapchat-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-thin.imageset/Contents.json deleted file mode 100644 index 1c0f655c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"snapchat-logo-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo.imageset/Contents.json deleted file mode 100644 index 71448509a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"snapchat-logo.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-bold.imageset/Contents.json deleted file mode 100644 index 02f20dbe1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"sneaker-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-duotone.imageset/Contents.json deleted file mode 100644 index 64ee1ec52..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sneaker-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-fill.imageset/Contents.json deleted file mode 100644 index d15f2eea7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"sneaker-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-light.imageset/Contents.json deleted file mode 100644 index 770301dfc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sneaker-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-bold.imageset/Contents.json deleted file mode 100644 index 19dd504ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sneaker-move-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-duotone.imageset/Contents.json deleted file mode 100644 index a90807e63..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sneaker-move-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-fill.imageset/Contents.json deleted file mode 100644 index 86debdc9f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"sneaker-move-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-light.imageset/Contents.json deleted file mode 100644 index 43564cdef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sneaker-move-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-thin.imageset/Contents.json deleted file mode 100644 index 2e9efdfee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sneaker-move-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move.imageset/Contents.json deleted file mode 100644 index 574385f99..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"sneaker-move.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-thin.imageset/Contents.json deleted file mode 100644 index bd611e2c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sneaker-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker.imageset/Contents.json deleted file mode 100644 index 6ad8a1031..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sneaker.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-bold.imageset/Contents.json deleted file mode 100644 index 6ae279574..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"snowflake-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-duotone.imageset/Contents.json deleted file mode 100644 index 8bd6436dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"snowflake-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-fill.imageset/Contents.json deleted file mode 100644 index b2a77647d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"snowflake-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-light.imageset/Contents.json deleted file mode 100644 index 4ef574cff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"snowflake-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-thin.imageset/Contents.json deleted file mode 100644 index 5449a2f34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"snowflake-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake.imageset/Contents.json deleted file mode 100644 index 9ddb876f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"snowflake.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-bold.imageset/Contents.json deleted file mode 100644 index ba2178df8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"soccer-ball-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-duotone.imageset/Contents.json deleted file mode 100644 index ceca0e77e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"soccer-ball-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-fill.imageset/Contents.json deleted file mode 100644 index a4de163d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"soccer-ball-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-light.imageset/Contents.json deleted file mode 100644 index 112a718a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"soccer-ball-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-thin.imageset/Contents.json deleted file mode 100644 index 654d9cbf8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"soccer-ball-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball.imageset/Contents.json deleted file mode 100644 index 057c84c95..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"soccer-ball.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-bold.imageset/Contents.json deleted file mode 100644 index 497246a9e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sock-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-duotone.imageset/Contents.json deleted file mode 100644 index 88945712d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sock-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-fill.imageset/Contents.json deleted file mode 100644 index 3f80cd024..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"sock-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-light.imageset/Contents.json deleted file mode 100644 index 64fc252b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"sock-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-thin.imageset/Contents.json deleted file mode 100644 index 591bb7190..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sock-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock.imageset/Contents.json deleted file mode 100644 index 8f38b3530..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sock.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-bold.imageset/Contents.json deleted file mode 100644 index 0cc15aa6e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"solar-panel-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-duotone.imageset/Contents.json deleted file mode 100644 index 8fb2ce8bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"solar-panel-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-fill.imageset/Contents.json deleted file mode 100644 index e10d8425c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"solar-panel-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-light.imageset/Contents.json deleted file mode 100644 index 5e52b8ba8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"solar-panel-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-thin.imageset/Contents.json deleted file mode 100644 index 5c9b0878e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"solar-panel-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel.imageset/Contents.json deleted file mode 100644 index dba714e2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"solar-panel.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-bold.imageset/Contents.json deleted file mode 100644 index 673a422ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"solar-roof-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-duotone.imageset/Contents.json deleted file mode 100644 index 7a5f85bef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"solar-roof-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-fill.imageset/Contents.json deleted file mode 100644 index d70a3c73a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"solar-roof-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-light.imageset/Contents.json deleted file mode 100644 index ae8b3e3be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"solar-roof-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-thin.imageset/Contents.json deleted file mode 100644 index 75de9edc5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"solar-roof-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof.imageset/Contents.json deleted file mode 100644 index 70e3e663b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"solar-roof.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-bold.imageset/Contents.json deleted file mode 100644 index 97e86aa2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sort-ascending-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-duotone.imageset/Contents.json deleted file mode 100644 index 81454f5c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sort-ascending-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-fill.imageset/Contents.json deleted file mode 100644 index 41b6bc3e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sort-ascending-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-light.imageset/Contents.json deleted file mode 100644 index ed5d5a1fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sort-ascending-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-thin.imageset/Contents.json deleted file mode 100644 index 59e4bdb75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"sort-ascending-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending.imageset/Contents.json deleted file mode 100644 index 73bbfcfb9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"sort-ascending.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-bold.imageset/Contents.json deleted file mode 100644 index 4e8590600..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sort-descending-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-duotone.imageset/Contents.json deleted file mode 100644 index 77ebe54ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sort-descending-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-fill.imageset/Contents.json deleted file mode 100644 index 7dab307b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"sort-descending-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-light.imageset/Contents.json deleted file mode 100644 index c6c98dc71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"sort-descending-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-thin.imageset/Contents.json deleted file mode 100644 index 2084befae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sort-descending-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending.imageset/Contents.json deleted file mode 100644 index 52abce87c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"sort-descending.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-bold.imageset/Contents.json deleted file mode 100644 index 4940081d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"soundcloud-logo-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-duotone.imageset/Contents.json deleted file mode 100644 index 9b20c220e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"soundcloud-logo-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-fill.imageset/Contents.json deleted file mode 100644 index fc09eaf7a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"soundcloud-logo-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-light.imageset/Contents.json deleted file mode 100644 index de3366881..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"soundcloud-logo-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-thin.imageset/Contents.json deleted file mode 100644 index ec07cdc39..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"soundcloud-logo-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo.imageset/Contents.json deleted file mode 100644 index afc8bf47b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"soundcloud-logo.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-bold.imageset/Contents.json deleted file mode 100644 index c0851c3e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"spade-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-duotone.imageset/Contents.json deleted file mode 100644 index 243ccd449..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"spade-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-fill.imageset/Contents.json deleted file mode 100644 index 353af8a03..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"spade-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-light.imageset/Contents.json deleted file mode 100644 index 66ed0528c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"spade-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-thin.imageset/Contents.json deleted file mode 100644 index df84cb8af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"spade-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade.imageset/Contents.json deleted file mode 100644 index 2c4388f63..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"spade.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-bold.imageset/Contents.json deleted file mode 100644 index 0a198f07b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sparkle-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-duotone.imageset/Contents.json deleted file mode 100644 index 3ed2011c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sparkle-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-fill.imageset/Contents.json deleted file mode 100644 index 808553285..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"sparkle-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-light.imageset/Contents.json deleted file mode 100644 index c343fa3cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sparkle-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-thin.imageset/Contents.json deleted file mode 100644 index f93e1b79d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"sparkle-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle.imageset/Contents.json deleted file mode 100644 index e7fd8c3c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sparkle.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-bold.imageset/Contents.json deleted file mode 100644 index 4198c3957..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-hifi-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-duotone.imageset/Contents.json deleted file mode 100644 index 94329eb81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"speaker-hifi-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-fill.imageset/Contents.json deleted file mode 100644 index f739511c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-hifi-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-light.imageset/Contents.json deleted file mode 100644 index 34bc4fc35..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"speaker-hifi-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-thin.imageset/Contents.json deleted file mode 100644 index 216f8b220..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"speaker-hifi-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi.imageset/Contents.json deleted file mode 100644 index 6571b1cd2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-hifi.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-bold.imageset/Contents.json deleted file mode 100644 index 31330313a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-high-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-duotone.imageset/Contents.json deleted file mode 100644 index 746e2917d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-high-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-fill.imageset/Contents.json deleted file mode 100644 index b6ecb1716..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-high-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-light.imageset/Contents.json deleted file mode 100644 index fb0cd4193..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"speaker-high-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-thin.imageset/Contents.json deleted file mode 100644 index abf859d97..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-high-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high.imageset/Contents.json deleted file mode 100644 index a0a7c462f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-high.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-bold.imageset/Contents.json deleted file mode 100644 index 1f887b769..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-low-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-duotone.imageset/Contents.json deleted file mode 100644 index 942fa429a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"speaker-low-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-fill.imageset/Contents.json deleted file mode 100644 index d003abe86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-low-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-light.imageset/Contents.json deleted file mode 100644 index 84c66ccbf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-low-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-thin.imageset/Contents.json deleted file mode 100644 index 590274060..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-low-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low.imageset/Contents.json deleted file mode 100644 index 47806c9c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-low.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-bold.imageset/Contents.json deleted file mode 100644 index cee8bbfc4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-none-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-duotone.imageset/Contents.json deleted file mode 100644 index 37a18e47a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"speaker-none-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-fill.imageset/Contents.json deleted file mode 100644 index 5633efb01..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-none-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-light.imageset/Contents.json deleted file mode 100644 index 69d24c10a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"speaker-none-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-thin.imageset/Contents.json deleted file mode 100644 index 96a84ebe2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-none-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none.imageset/Contents.json deleted file mode 100644 index 0db6278ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"speaker-none.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-bold.imageset/Contents.json deleted file mode 100644 index 1cf34b9ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"speaker-simple-high-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-duotone.imageset/Contents.json deleted file mode 100644 index d3c1957ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-simple-high-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-fill.imageset/Contents.json deleted file mode 100644 index b9d51ed14..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-simple-high-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-light.imageset/Contents.json deleted file mode 100644 index d3b9367a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"speaker-simple-high-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-thin.imageset/Contents.json deleted file mode 100644 index 507421539..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"speaker-simple-high-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high.imageset/Contents.json deleted file mode 100644 index ad54c63b1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-simple-high.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-bold.imageset/Contents.json deleted file mode 100644 index d628943fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-simple-low-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-duotone.imageset/Contents.json deleted file mode 100644 index 97dd6cc65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"speaker-simple-low-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-fill.imageset/Contents.json deleted file mode 100644 index 8f504bf90..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-simple-low-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-light.imageset/Contents.json deleted file mode 100644 index f4bf599f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-simple-low-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-thin.imageset/Contents.json deleted file mode 100644 index 3044ffcda..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-simple-low-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low.imageset/Contents.json deleted file mode 100644 index d2b5b8a62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-simple-low.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-bold.imageset/Contents.json deleted file mode 100644 index 3c6bc20c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"speaker-simple-none-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-duotone.imageset/Contents.json deleted file mode 100644 index 6b189681f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-simple-none-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-fill.imageset/Contents.json deleted file mode 100644 index cc3d43b46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-simple-none-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-light.imageset/Contents.json deleted file mode 100644 index 904d6bca7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-simple-none-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-thin.imageset/Contents.json deleted file mode 100644 index dc363ba2a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-simple-none-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none.imageset/Contents.json deleted file mode 100644 index 3966f2650..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"speaker-simple-none.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-bold.imageset/Contents.json deleted file mode 100644 index 14072f58c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-simple-slash-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-duotone.imageset/Contents.json deleted file mode 100644 index fcb37ceac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-simple-slash-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-fill.imageset/Contents.json deleted file mode 100644 index dea5c6036..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"speaker-simple-slash-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-light.imageset/Contents.json deleted file mode 100644 index 4e73ea3da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"speaker-simple-slash-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-thin.imageset/Contents.json deleted file mode 100644 index e97e6265c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"speaker-simple-slash-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash.imageset/Contents.json deleted file mode 100644 index 793a66efc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"speaker-simple-slash.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-bold.imageset/Contents.json deleted file mode 100644 index c4a149594..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"speaker-simple-x-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-duotone.imageset/Contents.json deleted file mode 100644 index 4bf7feffa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-simple-x-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-fill.imageset/Contents.json deleted file mode 100644 index 356c0bd39..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-simple-x-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-light.imageset/Contents.json deleted file mode 100644 index 627c298f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-simple-x-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-thin.imageset/Contents.json deleted file mode 100644 index 5e78babde..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"speaker-simple-x-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x.imageset/Contents.json deleted file mode 100644 index 65d392483..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"speaker-simple-x.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-bold.imageset/Contents.json deleted file mode 100644 index b78f6bb9c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"speaker-slash-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-duotone.imageset/Contents.json deleted file mode 100644 index 21832fc0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-slash-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-fill.imageset/Contents.json deleted file mode 100644 index b5a2fde68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"speaker-slash-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-light.imageset/Contents.json deleted file mode 100644 index a348c77de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-slash-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-thin.imageset/Contents.json deleted file mode 100644 index b8c77243f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"speaker-slash-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash.imageset/Contents.json deleted file mode 100644 index e65995491..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-slash.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-bold.imageset/Contents.json deleted file mode 100644 index b01e51d16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"speaker-x-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-duotone.imageset/Contents.json deleted file mode 100644 index 15d300136..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"speaker-x-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-fill.imageset/Contents.json deleted file mode 100644 index 317e388fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"speaker-x-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-light.imageset/Contents.json deleted file mode 100644 index 8930e2525..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-x-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-thin.imageset/Contents.json deleted file mode 100644 index 452fc034d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"speaker-x-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x.imageset/Contents.json deleted file mode 100644 index 03d191f8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"speaker-x.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-bold.imageset/Contents.json deleted file mode 100644 index 42cc0f748..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"speedometer-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-duotone.imageset/Contents.json deleted file mode 100644 index 3d6083380..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"speedometer-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-fill.imageset/Contents.json deleted file mode 100644 index 9770a448f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"speedometer-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-light.imageset/Contents.json deleted file mode 100644 index 798ca9a13..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"speedometer-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-thin.imageset/Contents.json deleted file mode 100644 index 568667960..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"speedometer-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer.imageset/Contents.json deleted file mode 100644 index 8d4f856b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"speedometer.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-bold.imageset/Contents.json deleted file mode 100644 index 90efe7411..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sphere-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-duotone.imageset/Contents.json deleted file mode 100644 index 0bf70b7e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"sphere-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-fill.imageset/Contents.json deleted file mode 100644 index 2f8802e94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sphere-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-light.imageset/Contents.json deleted file mode 100644 index dc2e85202..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"sphere-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-thin.imageset/Contents.json deleted file mode 100644 index 5ca7a1f02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"sphere-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere.imageset/Contents.json deleted file mode 100644 index 890e6ea84..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"sphere.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-bold.imageset/Contents.json deleted file mode 100644 index d2a1ecf3b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"spinner-ball-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-duotone.imageset/Contents.json deleted file mode 100644 index 5f153e395..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"spinner-ball-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-fill.imageset/Contents.json deleted file mode 100644 index 81ab9b5f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"spinner-ball-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-light.imageset/Contents.json deleted file mode 100644 index 574b742f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"spinner-ball-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-thin.imageset/Contents.json deleted file mode 100644 index 8b5ce1951..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"spinner-ball-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball.imageset/Contents.json deleted file mode 100644 index 3e8d95e5e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"spinner-ball.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-bold.imageset/Contents.json deleted file mode 100644 index 396a3edc9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"spinner-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-duotone.imageset/Contents.json deleted file mode 100644 index 165a07039..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"spinner-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-fill.imageset/Contents.json deleted file mode 100644 index 1be501967..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"spinner-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-bold.imageset/Contents.json deleted file mode 100644 index 48157329c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"spinner-gap-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-duotone.imageset/Contents.json deleted file mode 100644 index c4bd98f21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"spinner-gap-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-fill.imageset/Contents.json deleted file mode 100644 index b3f0fc9d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"spinner-gap-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-light.imageset/Contents.json deleted file mode 100644 index 84aa61239..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"spinner-gap-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-thin.imageset/Contents.json deleted file mode 100644 index b3f4dfd79..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"spinner-gap-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap.imageset/Contents.json deleted file mode 100644 index 0d97f6883..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"spinner-gap.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-light.imageset/Contents.json deleted file mode 100644 index e77a63dce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"spinner-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-thin.imageset/Contents.json deleted file mode 100644 index 2be37b3ed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"spinner-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner.imageset/Contents.json deleted file mode 100644 index 4b121c25d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"spinner.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-bold.imageset/Contents.json deleted file mode 100644 index 578b5a788..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"spiral-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-duotone.imageset/Contents.json deleted file mode 100644 index b7d49bba0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"spiral-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-fill.imageset/Contents.json deleted file mode 100644 index 377662b3c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"spiral-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-light.imageset/Contents.json deleted file mode 100644 index 755c9c587..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"spiral-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-thin.imageset/Contents.json deleted file mode 100644 index 0f4d4d64e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"spiral-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral.imageset/Contents.json deleted file mode 100644 index 6dde49dca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"spiral.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-bold.imageset/Contents.json deleted file mode 100644 index c822a33fe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"split-horizontal-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-duotone.imageset/Contents.json deleted file mode 100644 index ec1bccc45..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"split-horizontal-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-fill.imageset/Contents.json deleted file mode 100644 index 4fa15a4df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"split-horizontal-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-light.imageset/Contents.json deleted file mode 100644 index 67067a2df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"split-horizontal-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-thin.imageset/Contents.json deleted file mode 100644 index 42655dc7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"split-horizontal-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal.imageset/Contents.json deleted file mode 100644 index 41e2bf187..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"split-horizontal.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-bold.imageset/Contents.json deleted file mode 100644 index a6f43cb6c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"split-vertical-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-duotone.imageset/Contents.json deleted file mode 100644 index df8b5d74e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"split-vertical-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-fill.imageset/Contents.json deleted file mode 100644 index 2b73c447a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"split-vertical-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-light.imageset/Contents.json deleted file mode 100644 index e8bb64c8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"split-vertical-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-thin.imageset/Contents.json deleted file mode 100644 index cc508ee89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"split-vertical-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical.imageset/Contents.json deleted file mode 100644 index 6387529a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"split-vertical.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-bold.imageset/Contents.json deleted file mode 100644 index 3ea112dca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"spotify-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-duotone.imageset/Contents.json deleted file mode 100644 index 7f8fc641f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"spotify-logo-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-fill.imageset/Contents.json deleted file mode 100644 index 2eabe11f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"spotify-logo-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-light.imageset/Contents.json deleted file mode 100644 index 3b74a867a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"spotify-logo-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-thin.imageset/Contents.json deleted file mode 100644 index 6be7802d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"spotify-logo-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo.imageset/Contents.json deleted file mode 100644 index 38ba07a1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"spotify-logo.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-bold.imageset/Contents.json deleted file mode 100644 index 67f68baab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"spray-bottle-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-duotone.imageset/Contents.json deleted file mode 100644 index 6689b30b0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"spray-bottle-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-fill.imageset/Contents.json deleted file mode 100644 index 179f2391b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"spray-bottle-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-light.imageset/Contents.json deleted file mode 100644 index 62f48fa47..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"spray-bottle-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-thin.imageset/Contents.json deleted file mode 100644 index 9052d95fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"spray-bottle-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle.imageset/Contents.json deleted file mode 100644 index 6fa7ce5b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"spray-bottle.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-bold.imageset/Contents.json deleted file mode 100644 index c9d182b44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"square-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-duotone.imageset/Contents.json deleted file mode 100644 index 7f07aea00..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"square-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-fill.imageset/Contents.json deleted file mode 100644 index a4a0e8bda..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"square-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bold.imageset/Contents.json deleted file mode 100644 index 5a297c7b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"square-half-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-bold.imageset/Contents.json deleted file mode 100644 index bfc4711c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"square-half-bottom-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-duotone.imageset/Contents.json deleted file mode 100644 index e792ddae0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"square-half-bottom-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-fill.imageset/Contents.json deleted file mode 100644 index e074b92d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"square-half-bottom-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-light.imageset/Contents.json deleted file mode 100644 index 247e37a6d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"square-half-bottom-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-thin.imageset/Contents.json deleted file mode 100644 index cb92c5122..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"square-half-bottom-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom.imageset/Contents.json deleted file mode 100644 index 7b9fe2480..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"square-half-bottom.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-duotone.imageset/Contents.json deleted file mode 100644 index 466466ebb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"square-half-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-fill.imageset/Contents.json deleted file mode 100644 index 39a0ebb59..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"square-half-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-light.imageset/Contents.json deleted file mode 100644 index fa48c8ef9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"square-half-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-thin.imageset/Contents.json deleted file mode 100644 index 42fbc116e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"square-half-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half.imageset/Contents.json deleted file mode 100644 index 71f2e73e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"square-half.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-light.imageset/Contents.json deleted file mode 100644 index 1ba45bf19..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"square-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-bold.imageset/Contents.json deleted file mode 100644 index 3610ad69b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"square-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-duotone.imageset/Contents.json deleted file mode 100644 index 40864775b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"square-logo-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-fill.imageset/Contents.json deleted file mode 100644 index 3a0ecab10..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"square-logo-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-light.imageset/Contents.json deleted file mode 100644 index 274faf545..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"square-logo-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-thin.imageset/Contents.json deleted file mode 100644 index dbc00825f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"square-logo-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo.imageset/Contents.json deleted file mode 100644 index 7b2972993..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"square-logo.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-bold.imageset/Contents.json deleted file mode 100644 index 32e43b65a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"square-split-horizontal-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-duotone.imageset/Contents.json deleted file mode 100644 index cb82e6dbc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"square-split-horizontal-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-fill.imageset/Contents.json deleted file mode 100644 index faca05dee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"square-split-horizontal-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-light.imageset/Contents.json deleted file mode 100644 index f46ecbc5f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"square-split-horizontal-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-thin.imageset/Contents.json deleted file mode 100644 index 4070b3396..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"square-split-horizontal-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal.imageset/Contents.json deleted file mode 100644 index cd2c5034f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"square-split-horizontal.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-bold.imageset/Contents.json deleted file mode 100644 index c3a61dd55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"square-split-vertical-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-duotone.imageset/Contents.json deleted file mode 100644 index d0d9394f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"square-split-vertical-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-fill.imageset/Contents.json deleted file mode 100644 index ee346122b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"square-split-vertical-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-light.imageset/Contents.json deleted file mode 100644 index 3cfe73c35..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"square-split-vertical-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-thin.imageset/Contents.json deleted file mode 100644 index c669bdd88..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"square-split-vertical-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical.imageset/Contents.json deleted file mode 100644 index fb1597306..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"square-split-vertical.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-thin.imageset/Contents.json deleted file mode 100644 index 10d5bf416..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"square-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square.imageset/Contents.json deleted file mode 100644 index 94589c674..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"square.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-bold.imageset/Contents.json deleted file mode 100644 index 890c5b489..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"squares-four-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-duotone.imageset/Contents.json deleted file mode 100644 index 8136e0c50..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"squares-four-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-fill.imageset/Contents.json deleted file mode 100644 index e35835eaf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"squares-four-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-light.imageset/Contents.json deleted file mode 100644 index a5e9f8efb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"squares-four-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-thin.imageset/Contents.json deleted file mode 100644 index b7c85e3a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"squares-four-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four.imageset/Contents.json deleted file mode 100644 index 863284965..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"squares-four.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-bold.imageset/Contents.json deleted file mode 100644 index b38c69c43..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"stack-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-duotone.imageset/Contents.json deleted file mode 100644 index a801dfd74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"stack-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-fill.imageset/Contents.json deleted file mode 100644 index 5d44f420c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"stack-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-light.imageset/Contents.json deleted file mode 100644 index 37072d9ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"stack-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-bold.imageset/Contents.json deleted file mode 100644 index b7e787315..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"stack-minus-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-duotone.imageset/Contents.json deleted file mode 100644 index a0005a6d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"stack-minus-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-fill.imageset/Contents.json deleted file mode 100644 index 3cb6c3b73..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"stack-minus-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-light.imageset/Contents.json deleted file mode 100644 index 2de15431d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"stack-minus-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-thin.imageset/Contents.json deleted file mode 100644 index 66f7be050..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"stack-minus-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus.imageset/Contents.json deleted file mode 100644 index 7d4283510..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"stack-minus.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-bold.imageset/Contents.json deleted file mode 100644 index 32eb5c68a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"stack-overflow-logo-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-duotone.imageset/Contents.json deleted file mode 100644 index 4b2e31309..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"stack-overflow-logo-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-fill.imageset/Contents.json deleted file mode 100644 index 0e8943d39..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"stack-overflow-logo-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-light.imageset/Contents.json deleted file mode 100644 index b3e815691..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"stack-overflow-logo-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-thin.imageset/Contents.json deleted file mode 100644 index 829e93b31..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"stack-overflow-logo-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo.imageset/Contents.json deleted file mode 100644 index d0f82d9ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"stack-overflow-logo.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-bold.imageset/Contents.json deleted file mode 100644 index c63c97118..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"stack-plus-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-duotone.imageset/Contents.json deleted file mode 100644 index 50bf6ea41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"stack-plus-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-fill.imageset/Contents.json deleted file mode 100644 index c429d516d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"stack-plus-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-light.imageset/Contents.json deleted file mode 100644 index ade3dc2e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"stack-plus-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-thin.imageset/Contents.json deleted file mode 100644 index 6e6f62a0c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"stack-plus-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus.imageset/Contents.json deleted file mode 100644 index 30b29c596..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"stack-plus.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-bold.imageset/Contents.json deleted file mode 100644 index 167f38565..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"stack-simple-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-duotone.imageset/Contents.json deleted file mode 100644 index e25c6339a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"stack-simple-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-fill.imageset/Contents.json deleted file mode 100644 index 3b954f5e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"stack-simple-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-light.imageset/Contents.json deleted file mode 100644 index 6532edfb3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"stack-simple-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-thin.imageset/Contents.json deleted file mode 100644 index 5c7ce13c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"stack-simple-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple.imageset/Contents.json deleted file mode 100644 index 632afbe75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"stack-simple.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-thin.imageset/Contents.json deleted file mode 100644 index 2eb942866..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"stack-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack.imageset/Contents.json deleted file mode 100644 index 71b200159..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"stack.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-bold.imageset/Contents.json deleted file mode 100644 index 404c6b2ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"stairs-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-duotone.imageset/Contents.json deleted file mode 100644 index 77ecfc09b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"stairs-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-fill.imageset/Contents.json deleted file mode 100644 index edea8d8bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"stairs-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-light.imageset/Contents.json deleted file mode 100644 index ea1da51aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"stairs-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-thin.imageset/Contents.json deleted file mode 100644 index dd98909d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"stairs-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs.imageset/Contents.json deleted file mode 100644 index 2cd651671..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"stairs.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-bold.imageset/Contents.json deleted file mode 100644 index 6a2aa4652..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"stamp-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-duotone.imageset/Contents.json deleted file mode 100644 index 97402ead5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"stamp-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-fill.imageset/Contents.json deleted file mode 100644 index a92b50651..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"stamp-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-light.imageset/Contents.json deleted file mode 100644 index 7905ca95e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"stamp-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-thin.imageset/Contents.json deleted file mode 100644 index d4516e3bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"stamp-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp.imageset/Contents.json deleted file mode 100644 index ad2aa48bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"stamp.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-bold.imageset/Contents.json deleted file mode 100644 index 4cee8a80e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"standard-definition-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-duotone.imageset/Contents.json deleted file mode 100644 index 99759149e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"standard-definition-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-fill.imageset/Contents.json deleted file mode 100644 index 1e20e5ae3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"standard-definition-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-light.imageset/Contents.json deleted file mode 100644 index b6aa7d4fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"standard-definition-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-thin.imageset/Contents.json deleted file mode 100644 index bbd7f851c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"standard-definition-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition.imageset/Contents.json deleted file mode 100644 index 69b2b0566..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"standard-definition.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-bold.imageset/Contents.json deleted file mode 100644 index 3c091c713..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"star-and-crescent-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-duotone.imageset/Contents.json deleted file mode 100644 index 98056d5b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"star-and-crescent-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-fill.imageset/Contents.json deleted file mode 100644 index 861c68fcf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"star-and-crescent-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-light.imageset/Contents.json deleted file mode 100644 index fa86b124e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"star-and-crescent-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-thin.imageset/Contents.json deleted file mode 100644 index bb553e001..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"star-and-crescent-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent.imageset/Contents.json deleted file mode 100644 index 7632ad9dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"star-and-crescent.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-bold.imageset/Contents.json deleted file mode 100644 index 443d3da20..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"star-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-duotone.imageset/Contents.json deleted file mode 100644 index 31d6a3683..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"star-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-fill.imageset/Contents.json deleted file mode 100644 index f37610313..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"star-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-bold.imageset/Contents.json deleted file mode 100644 index 994873c42..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"star-four-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-duotone.imageset/Contents.json deleted file mode 100644 index 09096e5f7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"star-four-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-fill.imageset/Contents.json deleted file mode 100644 index 2fd6079b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"star-four-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-light.imageset/Contents.json deleted file mode 100644 index a97eaedff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"star-four-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-thin.imageset/Contents.json deleted file mode 100644 index 0b0c3af2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"star-four-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four.imageset/Contents.json deleted file mode 100644 index 868b48f2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"star-four.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-bold.imageset/Contents.json deleted file mode 100644 index 3277f17df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"star-half-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-duotone.imageset/Contents.json deleted file mode 100644 index 2ac79dd86..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"star-half-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-fill.imageset/Contents.json deleted file mode 100644 index 59addb082..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"star-half-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-light.imageset/Contents.json deleted file mode 100644 index 942d7afed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"star-half-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-thin.imageset/Contents.json deleted file mode 100644 index ba5ade473..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"star-half-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half.imageset/Contents.json deleted file mode 100644 index 7cfd8e6db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"star-half.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-light.imageset/Contents.json deleted file mode 100644 index 59fe5d4bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"star-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-bold.imageset/Contents.json deleted file mode 100644 index 0b0bf6b60..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"star-of-david-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-duotone.imageset/Contents.json deleted file mode 100644 index 2b1b67197..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"star-of-david-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-fill.imageset/Contents.json deleted file mode 100644 index 5992099ee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"star-of-david-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-light.imageset/Contents.json deleted file mode 100644 index 456b1987e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"star-of-david-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-thin.imageset/Contents.json deleted file mode 100644 index 8a3024590..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"star-of-david-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david.imageset/Contents.json deleted file mode 100644 index d6694d9ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"star-of-david.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-thin.imageset/Contents.json deleted file mode 100644 index c2f163a91..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"star-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star.imageset/Contents.json deleted file mode 100644 index f4be8981f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"star.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-bold.imageset/Contents.json deleted file mode 100644 index 77b5b97b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"steam-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-duotone.imageset/Contents.json deleted file mode 100644 index 5a5cd996a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"steam-logo-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-fill.imageset/Contents.json deleted file mode 100644 index 524e1cd07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"steam-logo-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-light.imageset/Contents.json deleted file mode 100644 index 732870296..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"steam-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-thin.imageset/Contents.json deleted file mode 100644 index c17e4f563..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"steam-logo-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo.imageset/Contents.json deleted file mode 100644 index e28aed0c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"steam-logo.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-bold.imageset/Contents.json deleted file mode 100644 index 531e60131..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"steering-wheel-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-duotone.imageset/Contents.json deleted file mode 100644 index 80c4b5de0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"steering-wheel-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-fill.imageset/Contents.json deleted file mode 100644 index b76168fe0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"steering-wheel-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-light.imageset/Contents.json deleted file mode 100644 index 0a554bfaa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"steering-wheel-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-thin.imageset/Contents.json deleted file mode 100644 index 4aadc5809..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"steering-wheel-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel.imageset/Contents.json deleted file mode 100644 index 28539e493..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"steering-wheel.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-bold.imageset/Contents.json deleted file mode 100644 index 2111c6db8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"steps-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-duotone.imageset/Contents.json deleted file mode 100644 index 4bff6b691..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"steps-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-fill.imageset/Contents.json deleted file mode 100644 index dba6b2c26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"steps-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-light.imageset/Contents.json deleted file mode 100644 index 550a52bff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"steps-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-thin.imageset/Contents.json deleted file mode 100644 index 6532fdfe8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"steps-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps.imageset/Contents.json deleted file mode 100644 index 66fde0733..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"steps.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-bold.imageset/Contents.json deleted file mode 100644 index 4580dd440..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"stethoscope-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-duotone.imageset/Contents.json deleted file mode 100644 index 6606c6f61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"stethoscope-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-fill.imageset/Contents.json deleted file mode 100644 index 030f138b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"stethoscope-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-light.imageset/Contents.json deleted file mode 100644 index 9b4af1b6e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"stethoscope-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-thin.imageset/Contents.json deleted file mode 100644 index 65b756195..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"stethoscope-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope.imageset/Contents.json deleted file mode 100644 index 7de6dae79..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"stethoscope.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-bold.imageset/Contents.json deleted file mode 100644 index c0d3cfbf4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sticker-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-duotone.imageset/Contents.json deleted file mode 100644 index 87d4ef7d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"sticker-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-fill.imageset/Contents.json deleted file mode 100644 index 7b9464aab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"sticker-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-light.imageset/Contents.json deleted file mode 100644 index 07bc15c18..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sticker-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-thin.imageset/Contents.json deleted file mode 100644 index dae221f9d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sticker-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker.imageset/Contents.json deleted file mode 100644 index a987bb533..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sticker.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-bold.imageset/Contents.json deleted file mode 100644 index 0614951dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"stool-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-duotone.imageset/Contents.json deleted file mode 100644 index 55cd60ab1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"stool-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-fill.imageset/Contents.json deleted file mode 100644 index f81d1131c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"stool-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-light.imageset/Contents.json deleted file mode 100644 index b9cdbb374..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"stool-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-thin.imageset/Contents.json deleted file mode 100644 index 32a1b8610..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"stool-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool.imageset/Contents.json deleted file mode 100644 index 3fa2f2c9d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"stool.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-bold.imageset/Contents.json deleted file mode 100644 index 2f2fb48a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"stop-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-bold.imageset/Contents.json deleted file mode 100644 index d8e70458e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"stop-circle-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-duotone.imageset/Contents.json deleted file mode 100644 index 8d5c9ebd8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"stop-circle-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-fill.imageset/Contents.json deleted file mode 100644 index 68a3827d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"stop-circle-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-light.imageset/Contents.json deleted file mode 100644 index 6d7d54cae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"stop-circle-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-thin.imageset/Contents.json deleted file mode 100644 index 531a51789..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"stop-circle-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle.imageset/Contents.json deleted file mode 100644 index 5057a36bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"stop-circle.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-duotone.imageset/Contents.json deleted file mode 100644 index 6f9ab733a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"stop-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-fill.imageset/Contents.json deleted file mode 100644 index a719d6680..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"stop-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-light.imageset/Contents.json deleted file mode 100644 index 0809bb9bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"stop-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-thin.imageset/Contents.json deleted file mode 100644 index 5d7231c16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"stop-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop.imageset/Contents.json deleted file mode 100644 index 075801449..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"stop.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-bold.imageset/Contents.json deleted file mode 100644 index b20d7fc73..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"storefront-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-duotone.imageset/Contents.json deleted file mode 100644 index 58d142c78..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"storefront-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-fill.imageset/Contents.json deleted file mode 100644 index d8d5f5073..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"storefront-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-light.imageset/Contents.json deleted file mode 100644 index 5b301ac14..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"storefront-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-thin.imageset/Contents.json deleted file mode 100644 index 9daab8f68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"storefront-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront.imageset/Contents.json deleted file mode 100644 index d8a14c7e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"storefront.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-bold.imageset/Contents.json deleted file mode 100644 index d1ed50586..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"strategy-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-duotone.imageset/Contents.json deleted file mode 100644 index 4942d58d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"strategy-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-fill.imageset/Contents.json deleted file mode 100644 index 5eb261d5e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"strategy-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-light.imageset/Contents.json deleted file mode 100644 index 3cb7c6e15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"strategy-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-thin.imageset/Contents.json deleted file mode 100644 index 20bf0e37d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"strategy-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy.imageset/Contents.json deleted file mode 100644 index d49fc2b09..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"strategy.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-bold.imageset/Contents.json deleted file mode 100644 index 6c16051e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"stripe-logo-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-duotone.imageset/Contents.json deleted file mode 100644 index 3095febe9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"stripe-logo-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-fill.imageset/Contents.json deleted file mode 100644 index c9def4a69..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"stripe-logo-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-light.imageset/Contents.json deleted file mode 100644 index 99614a69b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"stripe-logo-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-thin.imageset/Contents.json deleted file mode 100644 index 88313a4f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"stripe-logo-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo.imageset/Contents.json deleted file mode 100644 index e17891e82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"stripe-logo.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-bold.imageset/Contents.json deleted file mode 100644 index a29aba6c3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"student-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-duotone.imageset/Contents.json deleted file mode 100644 index 940fa61a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"student-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-fill.imageset/Contents.json deleted file mode 100644 index 425514530..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"student-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-light.imageset/Contents.json deleted file mode 100644 index 3f83b1e38..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"student-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-thin.imageset/Contents.json deleted file mode 100644 index 1897950e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"student-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student.imageset/Contents.json deleted file mode 100644 index dd0b2897e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"student.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-bold.imageset/Contents.json deleted file mode 100644 index 8a7b8612a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"subset-of-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-duotone.imageset/Contents.json deleted file mode 100644 index 2df7bada9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"subset-of-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-fill.imageset/Contents.json deleted file mode 100644 index edf6a0921..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"subset-of-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-light.imageset/Contents.json deleted file mode 100644 index 7eeeb0655..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"subset-of-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-thin.imageset/Contents.json deleted file mode 100644 index f55aaa1e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"subset-of-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of.imageset/Contents.json deleted file mode 100644 index 6ddf33a5c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"subset-of.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-bold.imageset/Contents.json deleted file mode 100644 index 807acb1b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"subset-proper-of-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-duotone.imageset/Contents.json deleted file mode 100644 index 35a74be9b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"subset-proper-of-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-fill.imageset/Contents.json deleted file mode 100644 index c39c865e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"subset-proper-of-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-light.imageset/Contents.json deleted file mode 100644 index 53ad692e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"subset-proper-of-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-thin.imageset/Contents.json deleted file mode 100644 index 7e4c56daf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"subset-proper-of-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of.imageset/Contents.json deleted file mode 100644 index 7b8466b34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"subset-proper-of.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-bold.imageset/Contents.json deleted file mode 100644 index 6213cfa97..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"subtitles-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-duotone.imageset/Contents.json deleted file mode 100644 index 8254fd8ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"subtitles-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-fill.imageset/Contents.json deleted file mode 100644 index f0f861bd4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"subtitles-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-light.imageset/Contents.json deleted file mode 100644 index ed29ff8bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"subtitles-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-bold.imageset/Contents.json deleted file mode 100644 index 9055ab881..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"subtitles-slash-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-duotone.imageset/Contents.json deleted file mode 100644 index ac3ca154f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"subtitles-slash-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-fill.imageset/Contents.json deleted file mode 100644 index 71f801047..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"subtitles-slash-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-light.imageset/Contents.json deleted file mode 100644 index c67a5aa08..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"subtitles-slash-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-thin.imageset/Contents.json deleted file mode 100644 index 523940376..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"subtitles-slash-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash.imageset/Contents.json deleted file mode 100644 index f926f60d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"subtitles-slash.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-thin.imageset/Contents.json deleted file mode 100644 index 0839713a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"subtitles-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles.imageset/Contents.json deleted file mode 100644 index 53ddf796f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"subtitles.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-bold.imageset/Contents.json deleted file mode 100644 index 480bd9fb4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"subtract-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-duotone.imageset/Contents.json deleted file mode 100644 index 9cd7d0140..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"subtract-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-fill.imageset/Contents.json deleted file mode 100644 index c376708ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"subtract-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-light.imageset/Contents.json deleted file mode 100644 index e27d4d582..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"subtract-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-bold.imageset/Contents.json deleted file mode 100644 index 2f4fff01b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"subtract-square-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-duotone.imageset/Contents.json deleted file mode 100644 index 84d3c2c75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"subtract-square-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-fill.imageset/Contents.json deleted file mode 100644 index 50f3b18a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"subtract-square-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-light.imageset/Contents.json deleted file mode 100644 index d86bbfa54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"subtract-square-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-thin.imageset/Contents.json deleted file mode 100644 index 4b69e4589..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"subtract-square-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square.imageset/Contents.json deleted file mode 100644 index cbfb47177..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"subtract-square.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-thin.imageset/Contents.json deleted file mode 100644 index 2a44305db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"subtract-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract.imageset/Contents.json deleted file mode 100644 index 3bd029d5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"subtract.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-bold.imageset/Contents.json deleted file mode 100644 index 248f5aecf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"subway-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-duotone.imageset/Contents.json deleted file mode 100644 index bd86d0261..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"subway-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-fill.imageset/Contents.json deleted file mode 100644 index 049f53700..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"subway-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-light.imageset/Contents.json deleted file mode 100644 index dd76fc696..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"subway-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-thin.imageset/Contents.json deleted file mode 100644 index 55445e400..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"subway-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway.imageset/Contents.json deleted file mode 100644 index f210f0a41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"subway.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-bold.imageset/Contents.json deleted file mode 100644 index e15c2ae77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"suitcase-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-duotone.imageset/Contents.json deleted file mode 100644 index f75a1dab4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"suitcase-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-fill.imageset/Contents.json deleted file mode 100644 index b39ad2bd7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"suitcase-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-light.imageset/Contents.json deleted file mode 100644 index 74a2df153..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"suitcase-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-bold.imageset/Contents.json deleted file mode 100644 index 401debca1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"suitcase-rolling-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-duotone.imageset/Contents.json deleted file mode 100644 index e040fd51e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"suitcase-rolling-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-fill.imageset/Contents.json deleted file mode 100644 index 0129f1523..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"suitcase-rolling-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-light.imageset/Contents.json deleted file mode 100644 index c3005dcdc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"suitcase-rolling-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-thin.imageset/Contents.json deleted file mode 100644 index 794091b1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"suitcase-rolling-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling.imageset/Contents.json deleted file mode 100644 index 7a4b79f65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"suitcase-rolling.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-bold.imageset/Contents.json deleted file mode 100644 index efdf4c533..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"suitcase-simple-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-duotone.imageset/Contents.json deleted file mode 100644 index ab2c9ac49..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"suitcase-simple-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-fill.imageset/Contents.json deleted file mode 100644 index 70710811c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"suitcase-simple-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-light.imageset/Contents.json deleted file mode 100644 index ad4a9051e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"suitcase-simple-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-thin.imageset/Contents.json deleted file mode 100644 index fad5f5a05..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"suitcase-simple-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple.imageset/Contents.json deleted file mode 100644 index d10dcae24..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"suitcase-simple.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-thin.imageset/Contents.json deleted file mode 100644 index 26fa79153..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"suitcase-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase.imageset/Contents.json deleted file mode 100644 index f0f93236f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"suitcase.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-bold.imageset/Contents.json deleted file mode 100644 index b6762ef08..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"sun-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-bold.imageset/Contents.json deleted file mode 100644 index 7b4df9fe3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sun-dim-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-duotone.imageset/Contents.json deleted file mode 100644 index 16a190b1e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sun-dim-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-fill.imageset/Contents.json deleted file mode 100644 index 396c79965..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sun-dim-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-light.imageset/Contents.json deleted file mode 100644 index 56515ed2a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"sun-dim-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-thin.imageset/Contents.json deleted file mode 100644 index 60e2e0129..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sun-dim-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim.imageset/Contents.json deleted file mode 100644 index 0cf170229..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sun-dim.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-duotone.imageset/Contents.json deleted file mode 100644 index e35270781..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sun-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-fill.imageset/Contents.json deleted file mode 100644 index b0c292fb4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sun-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-bold.imageset/Contents.json deleted file mode 100644 index 49887f58a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sun-horizon-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-duotone.imageset/Contents.json deleted file mode 100644 index a26b75294..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sun-horizon-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-fill.imageset/Contents.json deleted file mode 100644 index 7a8b09bef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sun-horizon-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-light.imageset/Contents.json deleted file mode 100644 index cd7cbba15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sun-horizon-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-thin.imageset/Contents.json deleted file mode 100644 index 60fb328a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sun-horizon-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon.imageset/Contents.json deleted file mode 100644 index 50786f0bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sun-horizon.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-light.imageset/Contents.json deleted file mode 100644 index b1c2c8bf5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sun-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-thin.imageset/Contents.json deleted file mode 100644 index a8c9f3e07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"sun-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun.imageset/Contents.json deleted file mode 100644 index 4ccd2d8a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"sun.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-bold.imageset/Contents.json deleted file mode 100644 index 88d664f33..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sunglasses-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-duotone.imageset/Contents.json deleted file mode 100644 index 64925a501..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"sunglasses-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-fill.imageset/Contents.json deleted file mode 100644 index ab4838799..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"sunglasses-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-light.imageset/Contents.json deleted file mode 100644 index 3caa1b189..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sunglasses-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-thin.imageset/Contents.json deleted file mode 100644 index 3a9ec958e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sunglasses-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses.imageset/Contents.json deleted file mode 100644 index e810aeb8f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"sunglasses.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-bold.imageset/Contents.json deleted file mode 100644 index 41cb6099e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"superset-of-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-duotone.imageset/Contents.json deleted file mode 100644 index 1d7373e13..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"superset-of-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-fill.imageset/Contents.json deleted file mode 100644 index b4cfbe641..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"superset-of-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-light.imageset/Contents.json deleted file mode 100644 index 61dada781..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"superset-of-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-thin.imageset/Contents.json deleted file mode 100644 index 8425be304..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"superset-of-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of.imageset/Contents.json deleted file mode 100644 index 768506fb1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"superset-of.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-bold.imageset/Contents.json deleted file mode 100644 index e509ca8e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"superset-proper-of-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-duotone.imageset/Contents.json deleted file mode 100644 index 5ce6dd618..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"superset-proper-of-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-fill.imageset/Contents.json deleted file mode 100644 index c2fd7f6de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"superset-proper-of-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-light.imageset/Contents.json deleted file mode 100644 index 27625618c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"superset-proper-of-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-thin.imageset/Contents.json deleted file mode 100644 index 5384d0522..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"superset-proper-of-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of.imageset/Contents.json deleted file mode 100644 index e5f5fd6df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"superset-proper-of.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-bold.imageset/Contents.json deleted file mode 100644 index 583d8eda0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"swap-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-duotone.imageset/Contents.json deleted file mode 100644 index bdc3731c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"swap-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-fill.imageset/Contents.json deleted file mode 100644 index 2e25748ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"swap-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-light.imageset/Contents.json deleted file mode 100644 index dd50edb59..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"swap-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-thin.imageset/Contents.json deleted file mode 100644 index bf697375b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"swap-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap.imageset/Contents.json deleted file mode 100644 index 7b2cf23c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"swap.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-bold.imageset/Contents.json deleted file mode 100644 index f3776162a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"swatches-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-duotone.imageset/Contents.json deleted file mode 100644 index 4f64d1ed2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"swatches-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-fill.imageset/Contents.json deleted file mode 100644 index 24ab03296..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"swatches-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-light.imageset/Contents.json deleted file mode 100644 index 991386d0e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"swatches-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-thin.imageset/Contents.json deleted file mode 100644 index d5ff02e65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"swatches-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches.imageset/Contents.json deleted file mode 100644 index bc8120dd1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"swatches.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-bold.imageset/Contents.json deleted file mode 100644 index 5ed986fbd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"swimming-pool-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-duotone.imageset/Contents.json deleted file mode 100644 index 01606fa68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"swimming-pool-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-fill.imageset/Contents.json deleted file mode 100644 index 82d2dc8fd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"swimming-pool-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-light.imageset/Contents.json deleted file mode 100644 index 9863cc06a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"swimming-pool-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-thin.imageset/Contents.json deleted file mode 100644 index 7451f854f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"swimming-pool-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool.imageset/Contents.json deleted file mode 100644 index e469e2a05..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"swimming-pool.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-bold.imageset/Contents.json deleted file mode 100644 index d60cef826..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"sword-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-duotone.imageset/Contents.json deleted file mode 100644 index e47006055..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sword-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-fill.imageset/Contents.json deleted file mode 100644 index f3b713a6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sword-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-light.imageset/Contents.json deleted file mode 100644 index d14b0bb3f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"sword-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-thin.imageset/Contents.json deleted file mode 100644 index e9065e05f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sword-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword.imageset/Contents.json deleted file mode 100644 index 474e9b7c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"sword.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-bold.imageset/Contents.json deleted file mode 100644 index b7cb3cda9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"synagogue-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-duotone.imageset/Contents.json deleted file mode 100644 index a761016e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"synagogue-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-fill.imageset/Contents.json deleted file mode 100644 index fd7f3f9e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"synagogue-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-light.imageset/Contents.json deleted file mode 100644 index 67e958cba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"synagogue-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-thin.imageset/Contents.json deleted file mode 100644 index c3bf53c02..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"synagogue-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue.imageset/Contents.json deleted file mode 100644 index 4af1cbc39..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"synagogue.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-bold.imageset/Contents.json deleted file mode 100644 index 6c3e1c099..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"syringe-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-duotone.imageset/Contents.json deleted file mode 100644 index 1b37e1cba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"syringe-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-fill.imageset/Contents.json deleted file mode 100644 index df050bdfa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"syringe-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-light.imageset/Contents.json deleted file mode 100644 index 70a239355..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"syringe-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-thin.imageset/Contents.json deleted file mode 100644 index d4c1a4557..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"syringe-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe.imageset/Contents.json deleted file mode 100644 index 57fdee6ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"syringe.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-bold.imageset/Contents.json deleted file mode 100644 index ccb8138ba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"t-shirt-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-duotone.imageset/Contents.json deleted file mode 100644 index 5aa35526f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"t-shirt-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-fill.imageset/Contents.json deleted file mode 100644 index 7359295e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"t-shirt-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-light.imageset/Contents.json deleted file mode 100644 index f6d487a18..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"t-shirt-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-thin.imageset/Contents.json deleted file mode 100644 index 92f55fe54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"t-shirt-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt.imageset/Contents.json deleted file mode 100644 index 04cabf257..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"t-shirt.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-bold.imageset/Contents.json deleted file mode 100644 index 041ff580f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"table-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-duotone.imageset/Contents.json deleted file mode 100644 index 3b489b6b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"table-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-fill.imageset/Contents.json deleted file mode 100644 index e8d9b4798..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"table-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-light.imageset/Contents.json deleted file mode 100644 index e78bc5411..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"table-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-thin.imageset/Contents.json deleted file mode 100644 index 5d417864b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"table-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table.imageset/Contents.json deleted file mode 100644 index 510567b7f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"table.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-bold.imageset/Contents.json deleted file mode 100644 index ca88c8343..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tabs-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-duotone.imageset/Contents.json deleted file mode 100644 index 950cb9f93..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tabs-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-fill.imageset/Contents.json deleted file mode 100644 index 81ddd9b48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tabs-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-light.imageset/Contents.json deleted file mode 100644 index 78253a431..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tabs-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-thin.imageset/Contents.json deleted file mode 100644 index d6834ab14..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tabs-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs.imageset/Contents.json deleted file mode 100644 index 63790c2e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tabs.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-bold.imageset/Contents.json deleted file mode 100644 index 8680083f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tag-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-bold.imageset/Contents.json deleted file mode 100644 index f0a61b84a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"tag-chevron-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-duotone.imageset/Contents.json deleted file mode 100644 index 3d2058084..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"tag-chevron-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-fill.imageset/Contents.json deleted file mode 100644 index 670628c80..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tag-chevron-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-light.imageset/Contents.json deleted file mode 100644 index df51fcc78..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tag-chevron-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-thin.imageset/Contents.json deleted file mode 100644 index 7261f0e2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tag-chevron-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron.imageset/Contents.json deleted file mode 100644 index 948b4c7ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tag-chevron.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-duotone.imageset/Contents.json deleted file mode 100644 index 29610e2ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tag-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-fill.imageset/Contents.json deleted file mode 100644 index f6744ef2a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tag-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-light.imageset/Contents.json deleted file mode 100644 index 4472f2076..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tag-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-bold.imageset/Contents.json deleted file mode 100644 index 9b18e7abd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"tag-simple-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-duotone.imageset/Contents.json deleted file mode 100644 index 1ea5200b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tag-simple-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-fill.imageset/Contents.json deleted file mode 100644 index 18f3981e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tag-simple-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-light.imageset/Contents.json deleted file mode 100644 index 186c8e21c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tag-simple-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-thin.imageset/Contents.json deleted file mode 100644 index 361f3b843..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tag-simple-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple.imageset/Contents.json deleted file mode 100644 index 7d627c27a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tag-simple.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-thin.imageset/Contents.json deleted file mode 100644 index fe14178ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"tag-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag.imageset/Contents.json deleted file mode 100644 index 1950f9af8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tag.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-bold.imageset/Contents.json deleted file mode 100644 index b7992b7d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"target-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-duotone.imageset/Contents.json deleted file mode 100644 index c62ec2c55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"target-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-fill.imageset/Contents.json deleted file mode 100644 index d33e65bdf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"target-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-light.imageset/Contents.json deleted file mode 100644 index 39bb0b41b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"target-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-thin.imageset/Contents.json deleted file mode 100644 index cdfc8bb89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"target-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target.imageset/Contents.json deleted file mode 100644 index e92aefa26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"target.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-bold.imageset/Contents.json deleted file mode 100644 index 9222f23ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"taxi-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-duotone.imageset/Contents.json deleted file mode 100644 index adf06be2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"taxi-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-fill.imageset/Contents.json deleted file mode 100644 index ad6ee8849..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"taxi-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-light.imageset/Contents.json deleted file mode 100644 index efde9d5dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"taxi-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-thin.imageset/Contents.json deleted file mode 100644 index f1646331f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"taxi-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi.imageset/Contents.json deleted file mode 100644 index e2d1a28b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"taxi.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-bold.imageset/Contents.json deleted file mode 100644 index 6264469b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tea-bag-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-duotone.imageset/Contents.json deleted file mode 100644 index 2169681a4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tea-bag-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-fill.imageset/Contents.json deleted file mode 100644 index cb99e843c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tea-bag-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-light.imageset/Contents.json deleted file mode 100644 index 5deeaba6c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"tea-bag-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-thin.imageset/Contents.json deleted file mode 100644 index 1d05dd099..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"tea-bag-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag.imageset/Contents.json deleted file mode 100644 index 6ed41e443..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tea-bag.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-bold.imageset/Contents.json deleted file mode 100644 index 6296f6fe1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"telegram-logo-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-duotone.imageset/Contents.json deleted file mode 100644 index 7b0e728cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"telegram-logo-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-fill.imageset/Contents.json deleted file mode 100644 index b146d023e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"telegram-logo-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-light.imageset/Contents.json deleted file mode 100644 index f6fd47f69..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"telegram-logo-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-thin.imageset/Contents.json deleted file mode 100644 index 466866c16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"telegram-logo-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo.imageset/Contents.json deleted file mode 100644 index f3f8900d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"telegram-logo.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-bold.imageset/Contents.json deleted file mode 100644 index a7edf558f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"television-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-duotone.imageset/Contents.json deleted file mode 100644 index f6ddbbb48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"television-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-fill.imageset/Contents.json deleted file mode 100644 index d0da78146..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"television-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-light.imageset/Contents.json deleted file mode 100644 index c8fb8d31f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"television-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-bold.imageset/Contents.json deleted file mode 100644 index 7fcb907c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"television-simple-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-duotone.imageset/Contents.json deleted file mode 100644 index 77dddd1f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"television-simple-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-fill.imageset/Contents.json deleted file mode 100644 index 7fd112bd6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"television-simple-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-light.imageset/Contents.json deleted file mode 100644 index 8d2dfd917..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"television-simple-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-thin.imageset/Contents.json deleted file mode 100644 index 7f0460455..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"television-simple-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple.imageset/Contents.json deleted file mode 100644 index 08c593624..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"television-simple.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-thin.imageset/Contents.json deleted file mode 100644 index 4659249c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"television-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television.imageset/Contents.json deleted file mode 100644 index 8b8785a3d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"television.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-bold.imageset/Contents.json deleted file mode 100644 index d6629f50a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tennis-ball-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-duotone.imageset/Contents.json deleted file mode 100644 index f88ef6e6c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tennis-ball-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-fill.imageset/Contents.json deleted file mode 100644 index c885ee1ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tennis-ball-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-light.imageset/Contents.json deleted file mode 100644 index 42625194b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tennis-ball-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-thin.imageset/Contents.json deleted file mode 100644 index 33bbeb5f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tennis-ball-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball.imageset/Contents.json deleted file mode 100644 index 9e46c14d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tennis-ball.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-bold.imageset/Contents.json deleted file mode 100644 index 7aa84d99c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"tent-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-duotone.imageset/Contents.json deleted file mode 100644 index 2d5f7df5a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"tent-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-fill.imageset/Contents.json deleted file mode 100644 index 41cf72769..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tent-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-light.imageset/Contents.json deleted file mode 100644 index 3bb09a06d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tent-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-thin.imageset/Contents.json deleted file mode 100644 index 0e42775f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tent-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent.imageset/Contents.json deleted file mode 100644 index 153a1d33c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"tent.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-bold.imageset/Contents.json deleted file mode 100644 index f85c2e437..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"terminal-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-duotone.imageset/Contents.json deleted file mode 100644 index 26a58e73b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"terminal-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-fill.imageset/Contents.json deleted file mode 100644 index fb2c1845a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"terminal-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-light.imageset/Contents.json deleted file mode 100644 index 716386cf1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"terminal-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-thin.imageset/Contents.json deleted file mode 100644 index 2758d25af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"terminal-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-bold.imageset/Contents.json deleted file mode 100644 index f13323d23..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"terminal-window-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-duotone.imageset/Contents.json deleted file mode 100644 index fcdd4ec12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"terminal-window-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-fill.imageset/Contents.json deleted file mode 100644 index e24f0895b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"terminal-window-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-light.imageset/Contents.json deleted file mode 100644 index ff6f1d1ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"terminal-window-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-thin.imageset/Contents.json deleted file mode 100644 index cb976c690..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"terminal-window-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window.imageset/Contents.json deleted file mode 100644 index 840dc319d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"terminal-window.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal.imageset/Contents.json deleted file mode 100644 index 2aa9e5954..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"terminal.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-bold.imageset/Contents.json deleted file mode 100644 index f13c597a7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"test-tube-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-duotone.imageset/Contents.json deleted file mode 100644 index 3d5b487ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"test-tube-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-fill.imageset/Contents.json deleted file mode 100644 index f2097ebe5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"test-tube-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-light.imageset/Contents.json deleted file mode 100644 index bb0e0598f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"test-tube-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-thin.imageset/Contents.json deleted file mode 100644 index ec8cebdd0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"test-tube-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube.imageset/Contents.json deleted file mode 100644 index 82d2b79b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"test-tube.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-bold.imageset/Contents.json deleted file mode 100644 index 9eac8dd5a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-a-underline-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-duotone.imageset/Contents.json deleted file mode 100644 index 5bdf253d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"text-a-underline-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-fill.imageset/Contents.json deleted file mode 100644 index e51864306..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-a-underline-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-light.imageset/Contents.json deleted file mode 100644 index 8e2364cec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"text-a-underline-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-thin.imageset/Contents.json deleted file mode 100644 index a6bc68324..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"text-a-underline-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline.imageset/Contents.json deleted file mode 100644 index 592117ad8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-a-underline.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-bold.imageset/Contents.json deleted file mode 100644 index df198aecb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-aa-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-duotone.imageset/Contents.json deleted file mode 100644 index 551afe344..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-aa-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-fill.imageset/Contents.json deleted file mode 100644 index 0c3044108..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"text-aa-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-light.imageset/Contents.json deleted file mode 100644 index 28aea6e66..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"text-aa-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-thin.imageset/Contents.json deleted file mode 100644 index bbf5123e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"text-aa-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa.imageset/Contents.json deleted file mode 100644 index be67e6a83..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-aa.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-bold.imageset/Contents.json deleted file mode 100644 index c16126f10..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-align-center-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-duotone.imageset/Contents.json deleted file mode 100644 index e7d047368..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-align-center-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-fill.imageset/Contents.json deleted file mode 100644 index bdecb0d7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-align-center-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-light.imageset/Contents.json deleted file mode 100644 index 227ed1df6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-align-center-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-thin.imageset/Contents.json deleted file mode 100644 index 85904b321..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-align-center-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center.imageset/Contents.json deleted file mode 100644 index bdd5e666f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-align-center.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-bold.imageset/Contents.json deleted file mode 100644 index fa3163783..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-align-justify-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-duotone.imageset/Contents.json deleted file mode 100644 index ffbf9714f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-align-justify-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-fill.imageset/Contents.json deleted file mode 100644 index ef5f82eb6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-align-justify-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-light.imageset/Contents.json deleted file mode 100644 index 9598a49c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-align-justify-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-thin.imageset/Contents.json deleted file mode 100644 index 6c5e4427d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-align-justify-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify.imageset/Contents.json deleted file mode 100644 index c64c6b70e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-align-justify.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-bold.imageset/Contents.json deleted file mode 100644 index 580baf4b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"text-align-left-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-duotone.imageset/Contents.json deleted file mode 100644 index dc451643d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-align-left-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-fill.imageset/Contents.json deleted file mode 100644 index 99b6fe176..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-align-left-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-light.imageset/Contents.json deleted file mode 100644 index 56164dfab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-align-left-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-thin.imageset/Contents.json deleted file mode 100644 index 600feefbc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"text-align-left-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left.imageset/Contents.json deleted file mode 100644 index a832a4c0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-align-left.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-bold.imageset/Contents.json deleted file mode 100644 index f3796c9f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-align-right-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-duotone.imageset/Contents.json deleted file mode 100644 index 923dba696..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-align-right-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-fill.imageset/Contents.json deleted file mode 100644 index 195a9e231..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-align-right-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-light.imageset/Contents.json deleted file mode 100644 index e76a777b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-align-right-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-thin.imageset/Contents.json deleted file mode 100644 index 0880f40e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-align-right-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right.imageset/Contents.json deleted file mode 100644 index dd3293171..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-align-right.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-bold.imageset/Contents.json deleted file mode 100644 index e39f3aeb9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-b-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-duotone.imageset/Contents.json deleted file mode 100644 index 4e52db060..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-b-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-fill.imageset/Contents.json deleted file mode 100644 index bd8fad425..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-b-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-light.imageset/Contents.json deleted file mode 100644 index 058fd9e12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-b-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-thin.imageset/Contents.json deleted file mode 100644 index 21ae1e842..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-b-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b.imageset/Contents.json deleted file mode 100644 index bafc6c493..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-b.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-bold.imageset/Contents.json deleted file mode 100644 index e83078aae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-columns-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-duotone.imageset/Contents.json deleted file mode 100644 index 81c214c16..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-columns-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-fill.imageset/Contents.json deleted file mode 100644 index 60af5663c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"text-columns-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-light.imageset/Contents.json deleted file mode 100644 index 1f5e90db1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"text-columns-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-thin.imageset/Contents.json deleted file mode 100644 index 2ad7ca6f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-columns-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns.imageset/Contents.json deleted file mode 100644 index 69850191e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-columns.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-bold.imageset/Contents.json deleted file mode 100644 index 54cf4e2b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-h-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-duotone.imageset/Contents.json deleted file mode 100644 index 92b52851b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-h-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-fill.imageset/Contents.json deleted file mode 100644 index 9676b0ba8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-h-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-bold.imageset/Contents.json deleted file mode 100644 index 780f45155..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-h-five-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-duotone.imageset/Contents.json deleted file mode 100644 index 70ffe3cbe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-h-five-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-fill.imageset/Contents.json deleted file mode 100644 index 2fa00524e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-h-five-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-light.imageset/Contents.json deleted file mode 100644 index 0410cd2f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-h-five-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-thin.imageset/Contents.json deleted file mode 100644 index a6a4c63ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-h-five-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five.imageset/Contents.json deleted file mode 100644 index 919e8eb54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"text-h-five.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-bold.imageset/Contents.json deleted file mode 100644 index 6078d0681..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-h-four-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-duotone.imageset/Contents.json deleted file mode 100644 index 85bb743d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-h-four-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-fill.imageset/Contents.json deleted file mode 100644 index 52f8f7f8b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-h-four-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-light.imageset/Contents.json deleted file mode 100644 index a317db4ca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-h-four-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-thin.imageset/Contents.json deleted file mode 100644 index e0f4be831..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-h-four-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four.imageset/Contents.json deleted file mode 100644 index 5546f5e69..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-h-four.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-light.imageset/Contents.json deleted file mode 100644 index 28d602cfb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-h-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-bold.imageset/Contents.json deleted file mode 100644 index 5dab7318c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-h-one-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-duotone.imageset/Contents.json deleted file mode 100644 index badd5d87e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-h-one-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-fill.imageset/Contents.json deleted file mode 100644 index ac0cca30d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-h-one-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-light.imageset/Contents.json deleted file mode 100644 index 519618e7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"text-h-one-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-thin.imageset/Contents.json deleted file mode 100644 index e8beaf237..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-h-one-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one.imageset/Contents.json deleted file mode 100644 index c2f36f945..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-h-one.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-bold.imageset/Contents.json deleted file mode 100644 index 54458240c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-h-six-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-duotone.imageset/Contents.json deleted file mode 100644 index 3d977ff1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"text-h-six-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-fill.imageset/Contents.json deleted file mode 100644 index 2f6620412..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-h-six-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-light.imageset/Contents.json deleted file mode 100644 index 7af19adbb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-h-six-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-thin.imageset/Contents.json deleted file mode 100644 index dd4298128..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-h-six-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six.imageset/Contents.json deleted file mode 100644 index e47a89568..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-h-six.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-thin.imageset/Contents.json deleted file mode 100644 index 4571404e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"text-h-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-bold.imageset/Contents.json deleted file mode 100644 index 44bed6e3a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-h-three-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-duotone.imageset/Contents.json deleted file mode 100644 index 15b358523..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-h-three-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-fill.imageset/Contents.json deleted file mode 100644 index 10d4cb485..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"text-h-three-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-light.imageset/Contents.json deleted file mode 100644 index 02c48eab6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-h-three-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-thin.imageset/Contents.json deleted file mode 100644 index 67d4f3b22..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-h-three-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three.imageset/Contents.json deleted file mode 100644 index f0ee6ac18..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-h-three.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-bold.imageset/Contents.json deleted file mode 100644 index f4cabb4b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-h-two-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-duotone.imageset/Contents.json deleted file mode 100644 index 26b73da4e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-h-two-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-fill.imageset/Contents.json deleted file mode 100644 index bcccb5b12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"text-h-two-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-light.imageset/Contents.json deleted file mode 100644 index cf8ed5e23..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-h-two-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-thin.imageset/Contents.json deleted file mode 100644 index 826ef7f94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-h-two-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two.imageset/Contents.json deleted file mode 100644 index 360258f04..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-h-two.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h.imageset/Contents.json deleted file mode 100644 index 5f82a57e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"text-h.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-bold.imageset/Contents.json deleted file mode 100644 index ce00110cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-indent-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-duotone.imageset/Contents.json deleted file mode 100644 index f424f5e0f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-indent-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-fill.imageset/Contents.json deleted file mode 100644 index 10cfd1ebc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"text-indent-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-light.imageset/Contents.json deleted file mode 100644 index 74cf784e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-indent-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-thin.imageset/Contents.json deleted file mode 100644 index f0d6e0e71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-indent-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent.imageset/Contents.json deleted file mode 100644 index 873182f70..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-indent.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-bold.imageset/Contents.json deleted file mode 100644 index ee3bf8271..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-italic-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-duotone.imageset/Contents.json deleted file mode 100644 index b5a54cc65..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-italic-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-fill.imageset/Contents.json deleted file mode 100644 index f151bb4b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"text-italic-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-light.imageset/Contents.json deleted file mode 100644 index 1de03efa8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-italic-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-thin.imageset/Contents.json deleted file mode 100644 index 6765e2c7e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"text-italic-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic.imageset/Contents.json deleted file mode 100644 index 9d7209db7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-italic.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-bold.imageset/Contents.json deleted file mode 100644 index a264590c9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-outdent-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-duotone.imageset/Contents.json deleted file mode 100644 index 5f37f2302..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-outdent-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-fill.imageset/Contents.json deleted file mode 100644 index e8e0539f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-outdent-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-light.imageset/Contents.json deleted file mode 100644 index 922fe9f03..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"text-outdent-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-thin.imageset/Contents.json deleted file mode 100644 index d1d26e947..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"text-outdent-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent.imageset/Contents.json deleted file mode 100644 index 65688e576..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-outdent.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-bold.imageset/Contents.json deleted file mode 100644 index ae756bf1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-strikethrough-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-duotone.imageset/Contents.json deleted file mode 100644 index f42164cf2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-strikethrough-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-fill.imageset/Contents.json deleted file mode 100644 index 62aad906a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-strikethrough-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-light.imageset/Contents.json deleted file mode 100644 index a59cabaac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"text-strikethrough-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-thin.imageset/Contents.json deleted file mode 100644 index bdab0b721..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"text-strikethrough-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough.imageset/Contents.json deleted file mode 100644 index 80d486ad5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-strikethrough.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-bold.imageset/Contents.json deleted file mode 100644 index 3380ac658..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-subscript-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-duotone.imageset/Contents.json deleted file mode 100644 index ee1820773..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-subscript-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-fill.imageset/Contents.json deleted file mode 100644 index aacb98112..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-subscript-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-light.imageset/Contents.json deleted file mode 100644 index 6f6ca55d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-subscript-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-thin.imageset/Contents.json deleted file mode 100644 index 9fa08bf30..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-subscript-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript.imageset/Contents.json deleted file mode 100644 index 157c24cc7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"text-subscript.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-bold.imageset/Contents.json deleted file mode 100644 index 17f867b4b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-superscript-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-duotone.imageset/Contents.json deleted file mode 100644 index fd3d069ec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-superscript-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-fill.imageset/Contents.json deleted file mode 100644 index 0ffb61068..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"text-superscript-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-light.imageset/Contents.json deleted file mode 100644 index 9a73026e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-superscript-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-thin.imageset/Contents.json deleted file mode 100644 index c55eef9d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-superscript-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript.imageset/Contents.json deleted file mode 100644 index eacba1bf4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-superscript.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-bold.imageset/Contents.json deleted file mode 100644 index 9d9cc628f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"text-t-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-duotone.imageset/Contents.json deleted file mode 100644 index 63aa6e231..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-t-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-fill.imageset/Contents.json deleted file mode 100644 index 1d84d82d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-t-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-light.imageset/Contents.json deleted file mode 100644 index 267837b77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-t-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-bold.imageset/Contents.json deleted file mode 100644 index 8da1508ae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-t-slash-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-duotone.imageset/Contents.json deleted file mode 100644 index d55857044..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"text-t-slash-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-fill.imageset/Contents.json deleted file mode 100644 index 887475c44..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-t-slash-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-light.imageset/Contents.json deleted file mode 100644 index 7c169e23c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-t-slash-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-thin.imageset/Contents.json deleted file mode 100644 index 0e65bd566..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"text-t-slash-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash.imageset/Contents.json deleted file mode 100644 index 3e5ed9fe8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-t-slash.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-thin.imageset/Contents.json deleted file mode 100644 index 7eb3808b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-t-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t.imageset/Contents.json deleted file mode 100644 index 07bea7bb0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"text-t.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-bold.imageset/Contents.json deleted file mode 100644 index 6427e4f51..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"text-underline-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-duotone.imageset/Contents.json deleted file mode 100644 index 424ff8ddf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-underline-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-fill.imageset/Contents.json deleted file mode 100644 index 4098e5e88..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"text-underline-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-light.imageset/Contents.json deleted file mode 100644 index c4f14b06e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"text-underline-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-thin.imageset/Contents.json deleted file mode 100644 index 0a6100a1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-underline-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline.imageset/Contents.json deleted file mode 100644 index b1f4a851f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"text-underline.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-bold.imageset/Contents.json deleted file mode 100644 index 7808921f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"textbox-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-duotone.imageset/Contents.json deleted file mode 100644 index 91a6c3a89..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"textbox-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-fill.imageset/Contents.json deleted file mode 100644 index e8bdedfd8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"textbox-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-light.imageset/Contents.json deleted file mode 100644 index 337dc22e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"textbox-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-thin.imageset/Contents.json deleted file mode 100644 index e1c8bc64f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"textbox-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox.imageset/Contents.json deleted file mode 100644 index f8f0c61cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"textbox.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-bold.imageset/Contents.json deleted file mode 100644 index 5d6cc8327..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"thermometer-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-bold.imageset/Contents.json deleted file mode 100644 index 1197f0ea8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"thermometer-cold-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-duotone.imageset/Contents.json deleted file mode 100644 index 0d6be4fb3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"thermometer-cold-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-fill.imageset/Contents.json deleted file mode 100644 index cd3bf8f60..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"thermometer-cold-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-light.imageset/Contents.json deleted file mode 100644 index d3483771e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"thermometer-cold-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-thin.imageset/Contents.json deleted file mode 100644 index 26afd8299..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"thermometer-cold-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold.imageset/Contents.json deleted file mode 100644 index 473f1ecb8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"thermometer-cold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-duotone.imageset/Contents.json deleted file mode 100644 index e41135e81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"thermometer-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-fill.imageset/Contents.json deleted file mode 100644 index d6f8eb009..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"thermometer-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-bold.imageset/Contents.json deleted file mode 100644 index 60dd60fcd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"thermometer-hot-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-duotone.imageset/Contents.json deleted file mode 100644 index 522f4e101..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"thermometer-hot-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-fill.imageset/Contents.json deleted file mode 100644 index 405136612..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"thermometer-hot-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-light.imageset/Contents.json deleted file mode 100644 index b832748ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"thermometer-hot-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-thin.imageset/Contents.json deleted file mode 100644 index 7c3f87f62..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"thermometer-hot-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot.imageset/Contents.json deleted file mode 100644 index 3861dc7fd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"thermometer-hot.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-light.imageset/Contents.json deleted file mode 100644 index 403284c08..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"thermometer-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-bold.imageset/Contents.json deleted file mode 100644 index ccc8937bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"thermometer-simple-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-duotone.imageset/Contents.json deleted file mode 100644 index 14bd79bfe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"thermometer-simple-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-fill.imageset/Contents.json deleted file mode 100644 index 62038e957..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"thermometer-simple-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-light.imageset/Contents.json deleted file mode 100644 index 8ae92472e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"thermometer-simple-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-thin.imageset/Contents.json deleted file mode 100644 index 2c3225610..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"thermometer-simple-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple.imageset/Contents.json deleted file mode 100644 index 2ddfecad3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"thermometer-simple.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-thin.imageset/Contents.json deleted file mode 100644 index c4ec8acdb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"thermometer-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer.imageset/Contents.json deleted file mode 100644 index 6cfe4da5a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"thermometer.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-bold.imageset/Contents.json deleted file mode 100644 index cb42941dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"threads-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-duotone.imageset/Contents.json deleted file mode 100644 index 093b9f4ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"threads-logo-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-fill.imageset/Contents.json deleted file mode 100644 index 5c9a31134..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"threads-logo-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-light.imageset/Contents.json deleted file mode 100644 index 29e7846e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"threads-logo-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-thin.imageset/Contents.json deleted file mode 100644 index 3540dc124..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"threads-logo-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo.imageset/Contents.json deleted file mode 100644 index 6996a18db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"threads-logo.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-bold.imageset/Contents.json deleted file mode 100644 index cb6dd7242..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"three-d-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-duotone.imageset/Contents.json deleted file mode 100644 index 166587e1e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"three-d-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-fill.imageset/Contents.json deleted file mode 100644 index d67710702..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"three-d-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-light.imageset/Contents.json deleted file mode 100644 index 95776d1b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"three-d-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-thin.imageset/Contents.json deleted file mode 100644 index bc6c1436c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"three-d-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d.imageset/Contents.json deleted file mode 100644 index eef33dbcd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"three-d.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-bold.imageset/Contents.json deleted file mode 100644 index f36d090cf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"thumbs-down-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-duotone.imageset/Contents.json deleted file mode 100644 index f804ac503..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"thumbs-down-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-fill.imageset/Contents.json deleted file mode 100644 index cf96228d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"thumbs-down-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-light.imageset/Contents.json deleted file mode 100644 index 7936d2f05..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"thumbs-down-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-thin.imageset/Contents.json deleted file mode 100644 index 6c18cdcca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"thumbs-down-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down.imageset/Contents.json deleted file mode 100644 index ec7c827e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"thumbs-down.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-bold.imageset/Contents.json deleted file mode 100644 index 4d8b0c4ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"thumbs-up-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-duotone.imageset/Contents.json deleted file mode 100644 index 80d032155..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"thumbs-up-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-fill.imageset/Contents.json deleted file mode 100644 index 612c65eeb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"thumbs-up-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-light.imageset/Contents.json deleted file mode 100644 index d29698b34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"thumbs-up-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-thin.imageset/Contents.json deleted file mode 100644 index 5ca991fb5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"thumbs-up-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up.imageset/Contents.json deleted file mode 100644 index 356505f94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"thumbs-up.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-bold.imageset/Contents.json deleted file mode 100644 index 41d62e87c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"ticket-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-duotone.imageset/Contents.json deleted file mode 100644 index 6cd59aced..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"ticket-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-fill.imageset/Contents.json deleted file mode 100644 index 9700a5f41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"ticket-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-light.imageset/Contents.json deleted file mode 100644 index ab757871c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"ticket-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-thin.imageset/Contents.json deleted file mode 100644 index 94a934bc3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ticket-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket.imageset/Contents.json deleted file mode 100644 index c278280fe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"ticket.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-bold.imageset/Contents.json deleted file mode 100644 index dd8e2dce8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tidal-logo-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-duotone.imageset/Contents.json deleted file mode 100644 index ee52a37db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tidal-logo-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-fill.imageset/Contents.json deleted file mode 100644 index f4df94176..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tidal-logo-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-light.imageset/Contents.json deleted file mode 100644 index 0f17bc66d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"tidal-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-thin.imageset/Contents.json deleted file mode 100644 index dfaa6e838..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tidal-logo-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo.imageset/Contents.json deleted file mode 100644 index 7387d0cd1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tidal-logo.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-bold.imageset/Contents.json deleted file mode 100644 index 1a955c6e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tiktok-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-duotone.imageset/Contents.json deleted file mode 100644 index db473866a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tiktok-logo-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-fill.imageset/Contents.json deleted file mode 100644 index d1ca9477a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tiktok-logo-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-light.imageset/Contents.json deleted file mode 100644 index 27986c478..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tiktok-logo-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-thin.imageset/Contents.json deleted file mode 100644 index 871296eb5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tiktok-logo-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo.imageset/Contents.json deleted file mode 100644 index c835f0ddb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"tiktok-logo.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-bold.imageset/Contents.json deleted file mode 100644 index 7080e37fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tilde-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-duotone.imageset/Contents.json deleted file mode 100644 index b305a7c51..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tilde-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-fill.imageset/Contents.json deleted file mode 100644 index 6d40af0ce..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tilde-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-light.imageset/Contents.json deleted file mode 100644 index bb587d62d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tilde-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-thin.imageset/Contents.json deleted file mode 100644 index 76438287a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tilde-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde.imageset/Contents.json deleted file mode 100644 index 676ee6ea7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tilde.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-bold.imageset/Contents.json deleted file mode 100644 index a8bc20144..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"timer-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-duotone.imageset/Contents.json deleted file mode 100644 index ef52962f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"timer-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-fill.imageset/Contents.json deleted file mode 100644 index d2524799b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"timer-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-light.imageset/Contents.json deleted file mode 100644 index 97035225d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"timer-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-thin.imageset/Contents.json deleted file mode 100644 index 7e2a8b879..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"timer-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer.imageset/Contents.json deleted file mode 100644 index c53fb1861..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"timer.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-bold.imageset/Contents.json deleted file mode 100644 index 38a8f4b00..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tip-jar-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-duotone.imageset/Contents.json deleted file mode 100644 index 33c7af950..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tip-jar-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-fill.imageset/Contents.json deleted file mode 100644 index 254db360d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"tip-jar-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-light.imageset/Contents.json deleted file mode 100644 index 03288cb80..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tip-jar-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-thin.imageset/Contents.json deleted file mode 100644 index ca7cf03be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tip-jar-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar.imageset/Contents.json deleted file mode 100644 index 9170372c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"tip-jar.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-bold.imageset/Contents.json deleted file mode 100644 index f32f9d2a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tipi-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-duotone.imageset/Contents.json deleted file mode 100644 index 6487027f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tipi-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-fill.imageset/Contents.json deleted file mode 100644 index 8a70cb1fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tipi-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-light.imageset/Contents.json deleted file mode 100644 index 0762d20fc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tipi-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-thin.imageset/Contents.json deleted file mode 100644 index a03c33c3a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tipi-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi.imageset/Contents.json deleted file mode 100644 index 9c329939f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tipi.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-bold.imageset/Contents.json deleted file mode 100644 index 264616cd1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"tire-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-duotone.imageset/Contents.json deleted file mode 100644 index 64fb396d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tire-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-fill.imageset/Contents.json deleted file mode 100644 index 6452e9a3b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tire-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-light.imageset/Contents.json deleted file mode 100644 index 6a7972ba4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tire-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-thin.imageset/Contents.json deleted file mode 100644 index 4a8b51ec6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tire-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire.imageset/Contents.json deleted file mode 100644 index 5aeb0cf8a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tire.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-bold.imageset/Contents.json deleted file mode 100644 index 9d32cace3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"toggle-left-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-duotone.imageset/Contents.json deleted file mode 100644 index d62f5fe1b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"toggle-left-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-fill.imageset/Contents.json deleted file mode 100644 index 2c2392e36..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"toggle-left-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-light.imageset/Contents.json deleted file mode 100644 index a45d6e238..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"toggle-left-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-thin.imageset/Contents.json deleted file mode 100644 index 38b19415b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"toggle-left-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left.imageset/Contents.json deleted file mode 100644 index e7e5abecf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"toggle-left.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-bold.imageset/Contents.json deleted file mode 100644 index 1bce4ca7d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"toggle-right-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-duotone.imageset/Contents.json deleted file mode 100644 index 98bfb803d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"toggle-right-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-fill.imageset/Contents.json deleted file mode 100644 index ee81a466a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"toggle-right-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-light.imageset/Contents.json deleted file mode 100644 index fe783a8f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"toggle-right-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-thin.imageset/Contents.json deleted file mode 100644 index c719b4648..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"toggle-right-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right.imageset/Contents.json deleted file mode 100644 index ae080101d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"toggle-right.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-bold.imageset/Contents.json deleted file mode 100644 index 046d10fbd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"toilet-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-duotone.imageset/Contents.json deleted file mode 100644 index b6a31fc53..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"toilet-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-fill.imageset/Contents.json deleted file mode 100644 index 822ec32e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"toilet-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-light.imageset/Contents.json deleted file mode 100644 index a0d24c88e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"toilet-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-bold.imageset/Contents.json deleted file mode 100644 index 7c76c8609..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"toilet-paper-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-duotone.imageset/Contents.json deleted file mode 100644 index 6e830653d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"toilet-paper-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-fill.imageset/Contents.json deleted file mode 100644 index ab08fff06..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"toilet-paper-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-light.imageset/Contents.json deleted file mode 100644 index d76d36a59..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"toilet-paper-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-thin.imageset/Contents.json deleted file mode 100644 index 690e01e31..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"toilet-paper-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper.imageset/Contents.json deleted file mode 100644 index c2cdcbb43..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"toilet-paper.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-thin.imageset/Contents.json deleted file mode 100644 index a4b276bf5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"toilet-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet.imageset/Contents.json deleted file mode 100644 index d6152669d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"toilet.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-bold.imageset/Contents.json deleted file mode 100644 index 497c22602..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"toolbox-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-duotone.imageset/Contents.json deleted file mode 100644 index cdd680ada..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"toolbox-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-fill.imageset/Contents.json deleted file mode 100644 index a4ab5647d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"toolbox-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-light.imageset/Contents.json deleted file mode 100644 index 8ae7bff8b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"toolbox-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-thin.imageset/Contents.json deleted file mode 100644 index 7865c8489..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"toolbox-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox.imageset/Contents.json deleted file mode 100644 index 1a081818f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"toolbox.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-bold.imageset/Contents.json deleted file mode 100644 index 86bdf1803..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tooth-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-duotone.imageset/Contents.json deleted file mode 100644 index ce63f769f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tooth-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-fill.imageset/Contents.json deleted file mode 100644 index 1cf88fc9f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tooth-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-light.imageset/Contents.json deleted file mode 100644 index 3ec083a0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"tooth-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-thin.imageset/Contents.json deleted file mode 100644 index a4fccd80e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tooth-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth.imageset/Contents.json deleted file mode 100644 index a61c36205..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tooth.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-bold.imageset/Contents.json deleted file mode 100644 index 6c147e58d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"tornado-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-duotone.imageset/Contents.json deleted file mode 100644 index 7ee940a71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tornado-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-fill.imageset/Contents.json deleted file mode 100644 index fa964e740..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tornado-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-light.imageset/Contents.json deleted file mode 100644 index 742dd9aac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tornado-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-thin.imageset/Contents.json deleted file mode 100644 index b5829d5ef..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"tornado-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado.imageset/Contents.json deleted file mode 100644 index 28a8c8836..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tornado.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-bold.imageset/Contents.json deleted file mode 100644 index 0537735f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tote-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-duotone.imageset/Contents.json deleted file mode 100644 index 945e2f45f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"tote-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-fill.imageset/Contents.json deleted file mode 100644 index 74be4d8fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tote-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-light.imageset/Contents.json deleted file mode 100644 index 06bb724cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tote-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-bold.imageset/Contents.json deleted file mode 100644 index 3c5bc5bbc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tote-simple-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-duotone.imageset/Contents.json deleted file mode 100644 index ca3d851c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tote-simple-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-fill.imageset/Contents.json deleted file mode 100644 index 8f5426280..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tote-simple-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-light.imageset/Contents.json deleted file mode 100644 index d66c3856c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tote-simple-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-thin.imageset/Contents.json deleted file mode 100644 index 0bc851a21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"tote-simple-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple.imageset/Contents.json deleted file mode 100644 index 8675728bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"tote-simple.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-thin.imageset/Contents.json deleted file mode 100644 index bf92944b9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"tote-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote.imageset/Contents.json deleted file mode 100644 index 4c1c7fa5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tote.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-bold.imageset/Contents.json deleted file mode 100644 index b1fac5c9e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"towel-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-duotone.imageset/Contents.json deleted file mode 100644 index 7b9e8392e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"towel-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-fill.imageset/Contents.json deleted file mode 100644 index c7aac3389..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"towel-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-light.imageset/Contents.json deleted file mode 100644 index 75928f022..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"towel-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-thin.imageset/Contents.json deleted file mode 100644 index daa82dce3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"towel-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel.imageset/Contents.json deleted file mode 100644 index 4aeedf4d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"towel.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-bold.imageset/Contents.json deleted file mode 100644 index 501d97d75..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tractor-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-duotone.imageset/Contents.json deleted file mode 100644 index 6902d37da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"tractor-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-fill.imageset/Contents.json deleted file mode 100644 index 63f31609a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tractor-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-light.imageset/Contents.json deleted file mode 100644 index 683488704..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tractor-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-thin.imageset/Contents.json deleted file mode 100644 index 5e694819a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tractor-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor.imageset/Contents.json deleted file mode 100644 index e8f3ee837..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"tractor.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-bold.imageset/Contents.json deleted file mode 100644 index 86f7eaf1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"trademark-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-duotone.imageset/Contents.json deleted file mode 100644 index bb413fbae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"trademark-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-fill.imageset/Contents.json deleted file mode 100644 index 5ffaf7bb3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"trademark-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-light.imageset/Contents.json deleted file mode 100644 index 1a72b1b28..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"trademark-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-bold.imageset/Contents.json deleted file mode 100644 index 6aa13f1ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"trademark-registered-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-duotone.imageset/Contents.json deleted file mode 100644 index 9f9f87a12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"trademark-registered-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-fill.imageset/Contents.json deleted file mode 100644 index 9978647b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"trademark-registered-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-light.imageset/Contents.json deleted file mode 100644 index 959fe1acc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"trademark-registered-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-thin.imageset/Contents.json deleted file mode 100644 index a46b93b92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"trademark-registered-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered.imageset/Contents.json deleted file mode 100644 index 754349862..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"trademark-registered.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-thin.imageset/Contents.json deleted file mode 100644 index f04b4957b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"trademark-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark.imageset/Contents.json deleted file mode 100644 index 0a591d7e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"trademark.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-bold.imageset/Contents.json deleted file mode 100644 index 654ff33dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"traffic-cone-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-duotone.imageset/Contents.json deleted file mode 100644 index 84bba386d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"traffic-cone-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-fill.imageset/Contents.json deleted file mode 100644 index a6fa68fcd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"traffic-cone-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-light.imageset/Contents.json deleted file mode 100644 index a7ea8743b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"traffic-cone-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-thin.imageset/Contents.json deleted file mode 100644 index e06932763..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"traffic-cone-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone.imageset/Contents.json deleted file mode 100644 index 642cc64d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"traffic-cone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-bold.imageset/Contents.json deleted file mode 100644 index 294a35448..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"traffic-sign-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-duotone.imageset/Contents.json deleted file mode 100644 index 084cf0e83..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"traffic-sign-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-fill.imageset/Contents.json deleted file mode 100644 index c22fc7a6a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"traffic-sign-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-light.imageset/Contents.json deleted file mode 100644 index 8c733c61b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"traffic-sign-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-thin.imageset/Contents.json deleted file mode 100644 index 8f1a3103c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"traffic-sign-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign.imageset/Contents.json deleted file mode 100644 index 1a9399fc2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"traffic-sign.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-bold.imageset/Contents.json deleted file mode 100644 index 00931fa04..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"traffic-signal-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-duotone.imageset/Contents.json deleted file mode 100644 index cc8d34024..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"traffic-signal-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-fill.imageset/Contents.json deleted file mode 100644 index f4dba8942..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"traffic-signal-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-light.imageset/Contents.json deleted file mode 100644 index 1b2969476..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"traffic-signal-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-thin.imageset/Contents.json deleted file mode 100644 index 2e62112df..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"traffic-signal-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal.imageset/Contents.json deleted file mode 100644 index f0709b756..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"traffic-signal.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-bold.imageset/Contents.json deleted file mode 100644 index f47976207..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"train-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-duotone.imageset/Contents.json deleted file mode 100644 index e6269ef61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"train-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-fill.imageset/Contents.json deleted file mode 100644 index 4b84038bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"train-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-light.imageset/Contents.json deleted file mode 100644 index 5aaf0ee07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"train-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-bold.imageset/Contents.json deleted file mode 100644 index e0a11e590..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"train-regional-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-duotone.imageset/Contents.json deleted file mode 100644 index b6034fff2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"train-regional-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-fill.imageset/Contents.json deleted file mode 100644 index 683cf0321..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"train-regional-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-light.imageset/Contents.json deleted file mode 100644 index d9b0552d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"train-regional-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-thin.imageset/Contents.json deleted file mode 100644 index f380b4603..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"train-regional-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional.imageset/Contents.json deleted file mode 100644 index 9bdbc8518..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"train-regional.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-bold.imageset/Contents.json deleted file mode 100644 index 0e7cb569f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"train-simple-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-duotone.imageset/Contents.json deleted file mode 100644 index e58b3df51..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"train-simple-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-fill.imageset/Contents.json deleted file mode 100644 index b38b76560..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"train-simple-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-light.imageset/Contents.json deleted file mode 100644 index 5354105a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"train-simple-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-thin.imageset/Contents.json deleted file mode 100644 index 3c7e77717..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"train-simple-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple.imageset/Contents.json deleted file mode 100644 index 01b1cb99d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"train-simple.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-thin.imageset/Contents.json deleted file mode 100644 index aab2dd4ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"train-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train.imageset/Contents.json deleted file mode 100644 index a11a0538d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"train.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-bold.imageset/Contents.json deleted file mode 100644 index b15320f0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tram-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-duotone.imageset/Contents.json deleted file mode 100644 index 95d66bb2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tram-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-fill.imageset/Contents.json deleted file mode 100644 index 1ff031927..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tram-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-light.imageset/Contents.json deleted file mode 100644 index ab517b066..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tram-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-thin.imageset/Contents.json deleted file mode 100644 index ad1fa2678..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"tram-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram.imageset/Contents.json deleted file mode 100644 index cb4d4a450..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tram.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-bold.imageset/Contents.json deleted file mode 100644 index aa05c1748..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"translate-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-duotone.imageset/Contents.json deleted file mode 100644 index cc6c44cab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"translate-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-fill.imageset/Contents.json deleted file mode 100644 index 10224441f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"translate-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-light.imageset/Contents.json deleted file mode 100644 index 2a276747e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"translate-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-thin.imageset/Contents.json deleted file mode 100644 index f196687fa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"translate-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate.imageset/Contents.json deleted file mode 100644 index a15ae1b2f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"translate.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-bold.imageset/Contents.json deleted file mode 100644 index 8be03602d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"trash-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-duotone.imageset/Contents.json deleted file mode 100644 index 10ad1c23a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"trash-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-fill.imageset/Contents.json deleted file mode 100644 index 6d80fc1d7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"trash-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-light.imageset/Contents.json deleted file mode 100644 index c222a7476..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"trash-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-bold.imageset/Contents.json deleted file mode 100644 index b30fa9f82..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"trash-simple-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-duotone.imageset/Contents.json deleted file mode 100644 index 846c4b052..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"trash-simple-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-fill.imageset/Contents.json deleted file mode 100644 index 3ad5dbd29..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"trash-simple-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-light.imageset/Contents.json deleted file mode 100644 index 4d324b132..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"trash-simple-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-thin.imageset/Contents.json deleted file mode 100644 index df8d07011..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"trash-simple-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple.imageset/Contents.json deleted file mode 100644 index 511c599d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"trash-simple.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-thin.imageset/Contents.json deleted file mode 100644 index 7d3824eb1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"trash-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash.imageset/Contents.json deleted file mode 100644 index 0356db846..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"trash.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-bold.imageset/Contents.json deleted file mode 100644 index 23ef19483..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tray-arrow-down-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-duotone.imageset/Contents.json deleted file mode 100644 index fe21e6101..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tray-arrow-down-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-duotone.imageset/tray-arrow-down-duotone.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-duotone.imageset/tray-arrow-down-duotone.svg deleted file mode 100644 index 2f34c96ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-duotone.imageset/tray-arrow-down-duotone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-fill.imageset/Contents.json deleted file mode 100644 index f64aaa18b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tray-arrow-down-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-fill.imageset/tray-arrow-down-fill.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-fill.imageset/tray-arrow-down-fill.svg deleted file mode 100644 index 5496ddff8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-fill.imageset/tray-arrow-down-fill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-light.imageset/Contents.json deleted file mode 100644 index d811f5e29..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tray-arrow-down-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-light.imageset/tray-arrow-down-light.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-light.imageset/tray-arrow-down-light.svg deleted file mode 100644 index 4b68d812f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-light.imageset/tray-arrow-down-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-thin.imageset/Contents.json deleted file mode 100644 index fb2191559..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tray-arrow-down-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-thin.imageset/tray-arrow-down-thin.svg b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-thin.imageset/tray-arrow-down-thin.svg deleted file mode 100644 index 15098af15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-thin.imageset/tray-arrow-down-thin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down.imageset/Contents.json deleted file mode 100644 index 7c65f2bae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tray-arrow-down.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-bold.imageset/Contents.json deleted file mode 100644 index e253b0b92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tray-arrow-up-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-duotone.imageset/Contents.json deleted file mode 100644 index 494e5487a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tray-arrow-up-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-fill.imageset/Contents.json deleted file mode 100644 index 259cf4d81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tray-arrow-up-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-light.imageset/Contents.json deleted file mode 100644 index 86b1faf4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"tray-arrow-up-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-thin.imageset/Contents.json deleted file mode 100644 index 638686030..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tray-arrow-up-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up.imageset/Contents.json deleted file mode 100644 index f8b6bb48e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"tray-arrow-up.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-bold.imageset/Contents.json deleted file mode 100644 index 68120360a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"tray-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-duotone.imageset/Contents.json deleted file mode 100644 index 462d61292..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tray-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-fill.imageset/Contents.json deleted file mode 100644 index fba1b5314..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tray-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-light.imageset/Contents.json deleted file mode 100644 index e1f54835c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"tray-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-thin.imageset/Contents.json deleted file mode 100644 index a49149b1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tray-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray.imageset/Contents.json deleted file mode 100644 index d374f269a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tray.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-bold.imageset/Contents.json deleted file mode 100644 index 2083dc328..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"treasure-chest-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-duotone.imageset/Contents.json deleted file mode 100644 index 8d0a01337..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"treasure-chest-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-fill.imageset/Contents.json deleted file mode 100644 index c9f8160e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"treasure-chest-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-light.imageset/Contents.json deleted file mode 100644 index d9a0e1afb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"treasure-chest-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-thin.imageset/Contents.json deleted file mode 100644 index ce1cb2d6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"treasure-chest-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest.imageset/Contents.json deleted file mode 100644 index 503acda01..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"treasure-chest.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-bold.imageset/Contents.json deleted file mode 100644 index 6ce238802..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"tree-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-duotone.imageset/Contents.json deleted file mode 100644 index 4749e2fa3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"tree-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-bold.imageset/Contents.json deleted file mode 100644 index 9f45bda6f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"tree-evergreen-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-duotone.imageset/Contents.json deleted file mode 100644 index 9339bdc2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tree-evergreen-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-fill.imageset/Contents.json deleted file mode 100644 index a0bc72000..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tree-evergreen-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-light.imageset/Contents.json deleted file mode 100644 index 31f8d2f25..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tree-evergreen-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-thin.imageset/Contents.json deleted file mode 100644 index 06985c32e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tree-evergreen-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen.imageset/Contents.json deleted file mode 100644 index 56e91fc4b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tree-evergreen.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-fill.imageset/Contents.json deleted file mode 100644 index 36cadb97d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tree-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-light.imageset/Contents.json deleted file mode 100644 index ed1857434..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"tree-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-bold.imageset/Contents.json deleted file mode 100644 index b42440b64..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"tree-palm-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-duotone.imageset/Contents.json deleted file mode 100644 index 6d277aeea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tree-palm-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-fill.imageset/Contents.json deleted file mode 100644 index 859959e2b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tree-palm-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-light.imageset/Contents.json deleted file mode 100644 index d3e22b078..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tree-palm-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-thin.imageset/Contents.json deleted file mode 100644 index a30af39bf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tree-palm-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm.imageset/Contents.json deleted file mode 100644 index 5e1890b5a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tree-palm.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-bold.imageset/Contents.json deleted file mode 100644 index cc3656a01..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tree-structure-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-duotone.imageset/Contents.json deleted file mode 100644 index 4447c66ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tree-structure-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-fill.imageset/Contents.json deleted file mode 100644 index c6e106f77..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tree-structure-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-light.imageset/Contents.json deleted file mode 100644 index 056feebbe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tree-structure-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-thin.imageset/Contents.json deleted file mode 100644 index a922e652d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"tree-structure-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure.imageset/Contents.json deleted file mode 100644 index f5aa04ed4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"tree-structure.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-thin.imageset/Contents.json deleted file mode 100644 index 75a552223..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tree-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-bold.imageset/Contents.json deleted file mode 100644 index 73bdcec2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"tree-view-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-duotone.imageset/Contents.json deleted file mode 100644 index 3c3bc86a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tree-view-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-fill.imageset/Contents.json deleted file mode 100644 index 64331bafa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tree-view-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-light.imageset/Contents.json deleted file mode 100644 index 1170b6964..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tree-view-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-thin.imageset/Contents.json deleted file mode 100644 index 6d41ecf85..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tree-view-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view.imageset/Contents.json deleted file mode 100644 index 67d5ccf1a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tree-view.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree.imageset/Contents.json deleted file mode 100644 index 626e684e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"tree.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-bold.imageset/Contents.json deleted file mode 100644 index 02f0347fa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"trend-down-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-duotone.imageset/Contents.json deleted file mode 100644 index aa54e530d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"trend-down-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-fill.imageset/Contents.json deleted file mode 100644 index c293f6aa3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"trend-down-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-light.imageset/Contents.json deleted file mode 100644 index da7f6ef45..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"trend-down-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-thin.imageset/Contents.json deleted file mode 100644 index b6122790c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"trend-down-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down.imageset/Contents.json deleted file mode 100644 index 991d9082c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"trend-down.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-bold.imageset/Contents.json deleted file mode 100644 index 14cbb91c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"trend-up-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-duotone.imageset/Contents.json deleted file mode 100644 index c62adce3b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"trend-up-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-fill.imageset/Contents.json deleted file mode 100644 index 21c09455b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"trend-up-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-light.imageset/Contents.json deleted file mode 100644 index 3ae5ad140..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"trend-up-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-thin.imageset/Contents.json deleted file mode 100644 index b70f20bcb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"trend-up-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up.imageset/Contents.json deleted file mode 100644 index 8c986e423..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"trend-up.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-bold.imageset/Contents.json deleted file mode 100644 index a9f1ba214..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"triangle-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-bold.imageset/Contents.json deleted file mode 100644 index e8c321ee9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"triangle-dashed-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-duotone.imageset/Contents.json deleted file mode 100644 index 98e290da2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"triangle-dashed-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-fill.imageset/Contents.json deleted file mode 100644 index 13c6fc31d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"triangle-dashed-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-light.imageset/Contents.json deleted file mode 100644 index f727fbf8b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"triangle-dashed-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-thin.imageset/Contents.json deleted file mode 100644 index b0822b379..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"triangle-dashed-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed.imageset/Contents.json deleted file mode 100644 index bd5bb3233..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"triangle-dashed.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-duotone.imageset/Contents.json deleted file mode 100644 index 7d07407b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"triangle-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-fill.imageset/Contents.json deleted file mode 100644 index 54662671e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"triangle-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-light.imageset/Contents.json deleted file mode 100644 index 2c5f08b27..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"triangle-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-thin.imageset/Contents.json deleted file mode 100644 index e1b70ab4a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"triangle-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle.imageset/Contents.json deleted file mode 100644 index b57997e18..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"triangle.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-bold.imageset/Contents.json deleted file mode 100644 index 7b0aaf289..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"trolley-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-duotone.imageset/Contents.json deleted file mode 100644 index 0e02c2bc4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"trolley-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-fill.imageset/Contents.json deleted file mode 100644 index eb9b23490..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"trolley-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-light.imageset/Contents.json deleted file mode 100644 index 7b9eb0c13..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"trolley-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-bold.imageset/Contents.json deleted file mode 100644 index 45f42923c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"trolley-suitcase-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-duotone.imageset/Contents.json deleted file mode 100644 index 246f02b53..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"trolley-suitcase-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-fill.imageset/Contents.json deleted file mode 100644 index e1e380f5c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"trolley-suitcase-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-light.imageset/Contents.json deleted file mode 100644 index ca1829db2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"trolley-suitcase-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-thin.imageset/Contents.json deleted file mode 100644 index f90af3683..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"trolley-suitcase-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase.imageset/Contents.json deleted file mode 100644 index 43824119a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"trolley-suitcase.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-thin.imageset/Contents.json deleted file mode 100644 index a051d6eaf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"trolley-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley.imageset/Contents.json deleted file mode 100644 index 98e31337d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"trolley.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-bold.imageset/Contents.json deleted file mode 100644 index 3778bd2e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"trophy-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-duotone.imageset/Contents.json deleted file mode 100644 index 9af00dcba..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"trophy-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-fill.imageset/Contents.json deleted file mode 100644 index 65b1684e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"trophy-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-light.imageset/Contents.json deleted file mode 100644 index d3bab5b34..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"trophy-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-thin.imageset/Contents.json deleted file mode 100644 index 26f66d712..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"trophy-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy.imageset/Contents.json deleted file mode 100644 index 0427804e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"trophy.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-bold.imageset/Contents.json deleted file mode 100644 index a8d210c92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"truck-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-duotone.imageset/Contents.json deleted file mode 100644 index 8dd628aab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"truck-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-fill.imageset/Contents.json deleted file mode 100644 index 36f034074..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"truck-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-light.imageset/Contents.json deleted file mode 100644 index 09a0683e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"truck-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-thin.imageset/Contents.json deleted file mode 100644 index ac109c7ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"truck-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-bold.imageset/Contents.json deleted file mode 100644 index f4ea05754..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"truck-trailer-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-duotone.imageset/Contents.json deleted file mode 100644 index 9caa4fd32..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"truck-trailer-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-fill.imageset/Contents.json deleted file mode 100644 index 9b258fa00..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"truck-trailer-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-light.imageset/Contents.json deleted file mode 100644 index 970e84523..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"truck-trailer-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-thin.imageset/Contents.json deleted file mode 100644 index 72eafa4d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"truck-trailer-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer.imageset/Contents.json deleted file mode 100644 index 05da0bfea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"truck-trailer.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck.imageset/Contents.json deleted file mode 100644 index bd8927e20..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"truck.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-bold.imageset/Contents.json deleted file mode 100644 index 96a920d11..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tumblr-logo-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-duotone.imageset/Contents.json deleted file mode 100644 index cf0526129..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tumblr-logo-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-fill.imageset/Contents.json deleted file mode 100644 index 1f7e96529..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tumblr-logo-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-light.imageset/Contents.json deleted file mode 100644 index 683586d1f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tumblr-logo-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-thin.imageset/Contents.json deleted file mode 100644 index d7bc26da4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"tumblr-logo-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo.imageset/Contents.json deleted file mode 100644 index 1b9bb910e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"tumblr-logo.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-bold.imageset/Contents.json deleted file mode 100644 index f2e1bffa0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"twitch-logo-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-duotone.imageset/Contents.json deleted file mode 100644 index 8778b5aa2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"twitch-logo-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-fill.imageset/Contents.json deleted file mode 100644 index cb21fa948..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"twitch-logo-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-light.imageset/Contents.json deleted file mode 100644 index affd04bd3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"twitch-logo-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-thin.imageset/Contents.json deleted file mode 100644 index e75db10c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"twitch-logo-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo.imageset/Contents.json deleted file mode 100644 index 48f94d52e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"twitch-logo.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-bold.imageset/Contents.json deleted file mode 100644 index 9737cd72d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"twitter-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-duotone.imageset/Contents.json deleted file mode 100644 index 3701897cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"twitter-logo-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-fill.imageset/Contents.json deleted file mode 100644 index d8a8925d3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"twitter-logo-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-light.imageset/Contents.json deleted file mode 100644 index 96bb9e40d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"twitter-logo-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-thin.imageset/Contents.json deleted file mode 100644 index 3d592d8c8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"twitter-logo-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo.imageset/Contents.json deleted file mode 100644 index a8cb7c166..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"twitter-logo.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-bold.imageset/Contents.json deleted file mode 100644 index c5e90bfdf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"umbrella-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-duotone.imageset/Contents.json deleted file mode 100644 index 3e02dc018..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"umbrella-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-fill.imageset/Contents.json deleted file mode 100644 index fe63684bc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"umbrella-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-light.imageset/Contents.json deleted file mode 100644 index 0c891f30d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"umbrella-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-bold.imageset/Contents.json deleted file mode 100644 index f653ef0d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"umbrella-simple-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-duotone.imageset/Contents.json deleted file mode 100644 index c940079da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"umbrella-simple-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-fill.imageset/Contents.json deleted file mode 100644 index 68f46b452..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"umbrella-simple-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-light.imageset/Contents.json deleted file mode 100644 index a14d66fd2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"umbrella-simple-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-thin.imageset/Contents.json deleted file mode 100644 index 42e52cb2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"umbrella-simple-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple.imageset/Contents.json deleted file mode 100644 index b93e1e98d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"umbrella-simple.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-thin.imageset/Contents.json deleted file mode 100644 index 779f4110a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"umbrella-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella.imageset/Contents.json deleted file mode 100644 index 4890a7f29..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"umbrella.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-bold.imageset/Contents.json deleted file mode 100644 index a7fc23445..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"union-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-duotone.imageset/Contents.json deleted file mode 100644 index 82f19324b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"union-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-fill.imageset/Contents.json deleted file mode 100644 index 90f064b91..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"union-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-light.imageset/Contents.json deleted file mode 100644 index 67adbbc25..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"union-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-thin.imageset/Contents.json deleted file mode 100644 index 834262321..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"union-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union.imageset/Contents.json deleted file mode 100644 index 5df3d908f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"union.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-bold.imageset/Contents.json deleted file mode 100644 index 9c1e60061..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"unite-bold.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-duotone.imageset/Contents.json deleted file mode 100644 index f7288d17a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"unite-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-fill.imageset/Contents.json deleted file mode 100644 index d11be7725..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"unite-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-light.imageset/Contents.json deleted file mode 100644 index 5d50159ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"unite-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-bold.imageset/Contents.json deleted file mode 100644 index a057f5858..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"unite-square-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-duotone.imageset/Contents.json deleted file mode 100644 index 2ff8fe54c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"unite-square-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-fill.imageset/Contents.json deleted file mode 100644 index 32f279a23..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"unite-square-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-light.imageset/Contents.json deleted file mode 100644 index ae7ff3727..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"unite-square-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-thin.imageset/Contents.json deleted file mode 100644 index e1d62989f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"unite-square-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square.imageset/Contents.json deleted file mode 100644 index 1de727076..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"unite-square.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-thin.imageset/Contents.json deleted file mode 100644 index f22850e0a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"unite-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite.imageset/Contents.json deleted file mode 100644 index d67953c0f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"unite.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-bold.imageset/Contents.json deleted file mode 100644 index 86a6ec79e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"upload-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-duotone.imageset/Contents.json deleted file mode 100644 index 361aa33fa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"upload-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-fill.imageset/Contents.json deleted file mode 100644 index 2e8aa50f2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"upload-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-light.imageset/Contents.json deleted file mode 100644 index 80a91c11a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"upload-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-bold.imageset/Contents.json deleted file mode 100644 index 85e88f7f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"upload-simple-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-duotone.imageset/Contents.json deleted file mode 100644 index bd5353216..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"upload-simple-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-fill.imageset/Contents.json deleted file mode 100644 index 14494b202..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"upload-simple-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-light.imageset/Contents.json deleted file mode 100644 index 416146fed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"upload-simple-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-thin.imageset/Contents.json deleted file mode 100644 index dc69e305b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"upload-simple-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple.imageset/Contents.json deleted file mode 100644 index 0fd6ab40f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"upload-simple.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-thin.imageset/Contents.json deleted file mode 100644 index 4927962b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"upload-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload.imageset/Contents.json deleted file mode 100644 index 81e0046f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"upload.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-bold.imageset/Contents.json deleted file mode 100644 index 85f092a68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"usb-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-duotone.imageset/Contents.json deleted file mode 100644 index d63570792..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"usb-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-fill.imageset/Contents.json deleted file mode 100644 index 5ec57da15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"usb-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-light.imageset/Contents.json deleted file mode 100644 index 21343ef55..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"usb-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-thin.imageset/Contents.json deleted file mode 100644 index 27800f1b5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"usb-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb.imageset/Contents.json deleted file mode 100644 index d3e0dc8d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"usb.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-bold.imageset/Contents.json deleted file mode 100644 index 515b04c26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-bold.imageset/Contents.json deleted file mode 100644 index 1bca6dfcf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-check-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-duotone.imageset/Contents.json deleted file mode 100644 index c14d1ad0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-check-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-fill.imageset/Contents.json deleted file mode 100644 index 9fd835f22..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"user-check-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-light.imageset/Contents.json deleted file mode 100644 index 0e6388aed..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-check-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-thin.imageset/Contents.json deleted file mode 100644 index fc01db8b7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-check-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check.imageset/Contents.json deleted file mode 100644 index 9701e3fb7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-check.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-bold.imageset/Contents.json deleted file mode 100644 index 5dc517ada..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-circle-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-bold.imageset/Contents.json deleted file mode 100644 index 449aa7bf5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"user-circle-check-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-duotone.imageset/Contents.json deleted file mode 100644 index aa165838c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"user-circle-check-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-fill.imageset/Contents.json deleted file mode 100644 index 889da1679..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-circle-check-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-light.imageset/Contents.json deleted file mode 100644 index 2fdf44318..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"user-circle-check-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-thin.imageset/Contents.json deleted file mode 100644 index 898c33282..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"user-circle-check-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check.imageset/Contents.json deleted file mode 100644 index 8b2a1861a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-circle-check.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-bold.imageset/Contents.json deleted file mode 100644 index d87b07ee0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-circle-dashed-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-duotone.imageset/Contents.json deleted file mode 100644 index 081160f08..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-circle-dashed-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-fill.imageset/Contents.json deleted file mode 100644 index ed8e0264e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"user-circle-dashed-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-light.imageset/Contents.json deleted file mode 100644 index 321f4ea5b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-circle-dashed-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-thin.imageset/Contents.json deleted file mode 100644 index b384e0f07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-circle-dashed-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed.imageset/Contents.json deleted file mode 100644 index 382b515a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-circle-dashed.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-duotone.imageset/Contents.json deleted file mode 100644 index 695403d09..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-circle-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-fill.imageset/Contents.json deleted file mode 100644 index bd103ab22..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"user-circle-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-bold.imageset/Contents.json deleted file mode 100644 index 2544f3fe1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"user-circle-gear-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-duotone.imageset/Contents.json deleted file mode 100644 index 1aea46b0d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"user-circle-gear-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-fill.imageset/Contents.json deleted file mode 100644 index c371b20ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"user-circle-gear-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-light.imageset/Contents.json deleted file mode 100644 index 93dc2b725..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-circle-gear-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-thin.imageset/Contents.json deleted file mode 100644 index 06e7ae1e2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"user-circle-gear-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear.imageset/Contents.json deleted file mode 100644 index 34bf07568..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"user-circle-gear.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-light.imageset/Contents.json deleted file mode 100644 index ea4ac6e3b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-circle-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-bold.imageset/Contents.json deleted file mode 100644 index b9d0db590..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"user-circle-minus-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-duotone.imageset/Contents.json deleted file mode 100644 index bed6ee009..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-circle-minus-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-fill.imageset/Contents.json deleted file mode 100644 index 7f419e525..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-circle-minus-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-light.imageset/Contents.json deleted file mode 100644 index b807e0cc7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-circle-minus-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-thin.imageset/Contents.json deleted file mode 100644 index 8a34172d5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-circle-minus-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus.imageset/Contents.json deleted file mode 100644 index d8e58d385..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-circle-minus.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-bold.imageset/Contents.json deleted file mode 100644 index 6ab11edf7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"user-circle-plus-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-duotone.imageset/Contents.json deleted file mode 100644 index 214be6490..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-circle-plus-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-fill.imageset/Contents.json deleted file mode 100644 index 41b0bf3e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"user-circle-plus-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-light.imageset/Contents.json deleted file mode 100644 index 2c996fde4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"user-circle-plus-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-thin.imageset/Contents.json deleted file mode 100644 index 38808bc1d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-circle-plus-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus.imageset/Contents.json deleted file mode 100644 index 2568bbde3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"user-circle-plus.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-thin.imageset/Contents.json deleted file mode 100644 index 69f08793e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"user-circle-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle.imageset/Contents.json deleted file mode 100644 index d398af4f6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-circle.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-duotone.imageset/Contents.json deleted file mode 100644 index 497ff766a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-fill.imageset/Contents.json deleted file mode 100644 index 0d631cdd4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"user-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-bold.imageset/Contents.json deleted file mode 100644 index 4fe124683..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-focus-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-duotone.imageset/Contents.json deleted file mode 100644 index d311f96ab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"user-focus-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-fill.imageset/Contents.json deleted file mode 100644 index 0dd24af95..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-focus-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-light.imageset/Contents.json deleted file mode 100644 index 1fc957aa7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"user-focus-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-thin.imageset/Contents.json deleted file mode 100644 index 6beb0754c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-focus-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus.imageset/Contents.json deleted file mode 100644 index c18adf136..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-focus.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-bold.imageset/Contents.json deleted file mode 100644 index c0d93cad8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"user-gear-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-duotone.imageset/Contents.json deleted file mode 100644 index 2c6feb3a3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-gear-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-fill.imageset/Contents.json deleted file mode 100644 index 6f88ca172..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-gear-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-light.imageset/Contents.json deleted file mode 100644 index 880c96106..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-gear-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-thin.imageset/Contents.json deleted file mode 100644 index dc060d85c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"user-gear-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear.imageset/Contents.json deleted file mode 100644 index b097e5c33..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-gear.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-light.imageset/Contents.json deleted file mode 100644 index cc6dca91f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-bold.imageset/Contents.json deleted file mode 100644 index 26f663df1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"user-list-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-duotone.imageset/Contents.json deleted file mode 100644 index e281c4805..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-list-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-fill.imageset/Contents.json deleted file mode 100644 index e4b0daed2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"user-list-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-light.imageset/Contents.json deleted file mode 100644 index 7779e37e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-list-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-thin.imageset/Contents.json deleted file mode 100644 index 1d1e38ddb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-list-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list.imageset/Contents.json deleted file mode 100644 index dd73e984c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-list.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-bold.imageset/Contents.json deleted file mode 100644 index e77e2ba7b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"user-minus-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-duotone.imageset/Contents.json deleted file mode 100644 index b7d5635aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-minus-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-fill.imageset/Contents.json deleted file mode 100644 index a280f5aeb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-minus-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-light.imageset/Contents.json deleted file mode 100644 index 37e184904..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-minus-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-thin.imageset/Contents.json deleted file mode 100644 index 2c4395d40..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"user-minus-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus.imageset/Contents.json deleted file mode 100644 index 7ca09ebab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-minus.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-bold.imageset/Contents.json deleted file mode 100644 index 620d434b1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"user-plus-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-duotone.imageset/Contents.json deleted file mode 100644 index 528b3510a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-plus-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-fill.imageset/Contents.json deleted file mode 100644 index d2bea9404..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-plus-fill.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-light.imageset/Contents.json deleted file mode 100644 index e642fa68f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-plus-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-thin.imageset/Contents.json deleted file mode 100644 index d9233ff9f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-plus-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus.imageset/Contents.json deleted file mode 100644 index d59a21a25..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"user-plus.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-bold.imageset/Contents.json deleted file mode 100644 index 014480bfa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"user-rectangle-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-duotone.imageset/Contents.json deleted file mode 100644 index 3f2775c1a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"user-rectangle-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-fill.imageset/Contents.json deleted file mode 100644 index c460f814d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"user-rectangle-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-light.imageset/Contents.json deleted file mode 100644 index ea00c1734..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-rectangle-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-thin.imageset/Contents.json deleted file mode 100644 index 37fdbc7db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"user-rectangle-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle.imageset/Contents.json deleted file mode 100644 index c1d2ab14d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-rectangle.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-bold.imageset/Contents.json deleted file mode 100644 index 96afc9e32..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-sound-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-duotone.imageset/Contents.json deleted file mode 100644 index ce36e4207..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-sound-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-fill.imageset/Contents.json deleted file mode 100644 index c2430a807..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-sound-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-light.imageset/Contents.json deleted file mode 100644 index 287e5e417..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-sound-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-thin.imageset/Contents.json deleted file mode 100644 index 5bffb0eb6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-sound-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound.imageset/Contents.json deleted file mode 100644 index e4bdb4508..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"user-sound.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-bold.imageset/Contents.json deleted file mode 100644 index a9e0bb3b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-square-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-duotone.imageset/Contents.json deleted file mode 100644 index 9d3ab36e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"user-square-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-fill.imageset/Contents.json deleted file mode 100644 index d663fcf09..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"user-square-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-light.imageset/Contents.json deleted file mode 100644 index 7a2094978..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-square-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-thin.imageset/Contents.json deleted file mode 100644 index f00a9486c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-square-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square.imageset/Contents.json deleted file mode 100644 index dc4664338..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"user-square.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-bold.imageset/Contents.json deleted file mode 100644 index 391ae4caf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"user-switch-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-duotone.imageset/Contents.json deleted file mode 100644 index 67b520f94..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"user-switch-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-fill.imageset/Contents.json deleted file mode 100644 index 9eb161aca..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-switch-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-light.imageset/Contents.json deleted file mode 100644 index 8a00d6b85..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"user-switch-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-thin.imageset/Contents.json deleted file mode 100644 index 581455004..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"user-switch-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch.imageset/Contents.json deleted file mode 100644 index a111f5fa8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"user-switch.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-thin.imageset/Contents.json deleted file mode 100644 index 55dc55a2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"user-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user.imageset/Contents.json deleted file mode 100644 index 81c078838..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"user.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-bold.imageset/Contents.json deleted file mode 100644 index 68f80f0dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"users-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-duotone.imageset/Contents.json deleted file mode 100644 index f13a795d0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"users-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-fill.imageset/Contents.json deleted file mode 100644 index 08c8fee8c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"users-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-bold.imageset/Contents.json deleted file mode 100644 index 3a78847af..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"users-four-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-duotone.imageset/Contents.json deleted file mode 100644 index 40e5d8e46..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"users-four-duotone.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-fill.imageset/Contents.json deleted file mode 100644 index 45834ca21..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"users-four-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-light.imageset/Contents.json deleted file mode 100644 index ec8575c42..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"users-four-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-thin.imageset/Contents.json deleted file mode 100644 index 7f73bb1ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"users-four-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four.imageset/Contents.json deleted file mode 100644 index 4130f4012..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"users-four.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-light.imageset/Contents.json deleted file mode 100644 index 68486fa39..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"users-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-thin.imageset/Contents.json deleted file mode 100644 index ae08de947..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"users-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-bold.imageset/Contents.json deleted file mode 100644 index 9c1d95d07..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"users-three-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-duotone.imageset/Contents.json deleted file mode 100644 index 578ff0675..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"users-three-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-fill.imageset/Contents.json deleted file mode 100644 index d081df629..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"users-three-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-light.imageset/Contents.json deleted file mode 100644 index 873274c63..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"users-three-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-thin.imageset/Contents.json deleted file mode 100644 index 8817a9a41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"users-three-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three.imageset/Contents.json deleted file mode 100644 index aba9bdb35..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"users-three.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users.imageset/Contents.json deleted file mode 100644 index f54dd8823..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"users.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-bold.imageset/Contents.json deleted file mode 100644 index 7902cf1a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"van-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-duotone.imageset/Contents.json deleted file mode 100644 index 81aa281de..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"van-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-fill.imageset/Contents.json deleted file mode 100644 index 6d1de9508..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"van-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-light.imageset/Contents.json deleted file mode 100644 index 85866db85..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"van-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-thin.imageset/Contents.json deleted file mode 100644 index 01d9522e9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"van-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van.imageset/Contents.json deleted file mode 100644 index 79fa41d45..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"van.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-bold.imageset/Contents.json deleted file mode 100644 index 1ccef327f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"vault-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-duotone.imageset/Contents.json deleted file mode 100644 index 58c95e086..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"vault-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-fill.imageset/Contents.json deleted file mode 100644 index 344eb927b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"vault-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-light.imageset/Contents.json deleted file mode 100644 index d2145bbe4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"vault-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-thin.imageset/Contents.json deleted file mode 100644 index f6465c938..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"vault-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault.imageset/Contents.json deleted file mode 100644 index e7d755854..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"vault.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-bold.imageset/Contents.json deleted file mode 100644 index 56345a719..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"vector-three-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-duotone.imageset/Contents.json deleted file mode 100644 index 29bf99289..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"vector-three-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-fill.imageset/Contents.json deleted file mode 100644 index 578a50efd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"vector-three-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-light.imageset/Contents.json deleted file mode 100644 index db8c08d69..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"vector-three-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-thin.imageset/Contents.json deleted file mode 100644 index 63b2164f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"vector-three-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three.imageset/Contents.json deleted file mode 100644 index 294264d47..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"vector-three.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-bold.imageset/Contents.json deleted file mode 100644 index 070fbce92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"vector-two-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-duotone.imageset/Contents.json deleted file mode 100644 index 471850cdf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"vector-two-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-fill.imageset/Contents.json deleted file mode 100644 index 93afaf387..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"vector-two-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-light.imageset/Contents.json deleted file mode 100644 index e8d8a8824..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"vector-two-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-thin.imageset/Contents.json deleted file mode 100644 index 3a463fcfd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"vector-two-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two.imageset/Contents.json deleted file mode 100644 index ddcf11cd2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"vector-two.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-bold.imageset/Contents.json deleted file mode 100644 index 88d1d016e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"vibrate-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-duotone.imageset/Contents.json deleted file mode 100644 index 59f1dac15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"vibrate-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-fill.imageset/Contents.json deleted file mode 100644 index 6003c0fe2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"vibrate-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-light.imageset/Contents.json deleted file mode 100644 index 7171da640..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"vibrate-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-thin.imageset/Contents.json deleted file mode 100644 index aa88bc4a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"vibrate-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate.imageset/Contents.json deleted file mode 100644 index 4117130bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"vibrate.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-bold.imageset/Contents.json deleted file mode 100644 index d6cdf11c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"video-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-bold.imageset/Contents.json deleted file mode 100644 index df72d456c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"video-camera-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-duotone.imageset/Contents.json deleted file mode 100644 index cdbcd01da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"video-camera-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-fill.imageset/Contents.json deleted file mode 100644 index 851e46fbb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"video-camera-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-light.imageset/Contents.json deleted file mode 100644 index fb07405e1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"video-camera-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-bold.imageset/Contents.json deleted file mode 100644 index 8e17e4a9b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"video-camera-slash-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-duotone.imageset/Contents.json deleted file mode 100644 index b459e252a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"video-camera-slash-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-fill.imageset/Contents.json deleted file mode 100644 index 5ffcaf456..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"video-camera-slash-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-light.imageset/Contents.json deleted file mode 100644 index 2da88bbbf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"video-camera-slash-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-thin.imageset/Contents.json deleted file mode 100644 index 16f3184a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"video-camera-slash-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash.imageset/Contents.json deleted file mode 100644 index 532bfd395..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"video-camera-slash.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-thin.imageset/Contents.json deleted file mode 100644 index ccddc06f9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"video-camera-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera.imageset/Contents.json deleted file mode 100644 index 40f263cfa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"video-camera.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-bold.imageset/Contents.json deleted file mode 100644 index 72f202885..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"video-conference-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-duotone.imageset/Contents.json deleted file mode 100644 index da5b1a6c2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"video-conference-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-fill.imageset/Contents.json deleted file mode 100644 index 68f61fb0b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"video-conference-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-light.imageset/Contents.json deleted file mode 100644 index 86806a05c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"video-conference-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-thin.imageset/Contents.json deleted file mode 100644 index 83fafc903..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"video-conference-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference.imageset/Contents.json deleted file mode 100644 index 05a61ddf0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"video-conference.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-duotone.imageset/Contents.json deleted file mode 100644 index 920f481fa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"video-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-fill.imageset/Contents.json deleted file mode 100644 index 2955c9340..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"video-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-light.imageset/Contents.json deleted file mode 100644 index addd3af3e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"video-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-thin.imageset/Contents.json deleted file mode 100644 index 76385a344..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"video-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video.imageset/Contents.json deleted file mode 100644 index e49c6a7b3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"video.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-bold.imageset/Contents.json deleted file mode 100644 index 5f8c47175..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"vignette-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-duotone.imageset/Contents.json deleted file mode 100644 index 9db76121a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"vignette-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-fill.imageset/Contents.json deleted file mode 100644 index 36c25bfeb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"vignette-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-light.imageset/Contents.json deleted file mode 100644 index 774643646..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"vignette-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-thin.imageset/Contents.json deleted file mode 100644 index f767315fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"vignette-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette.imageset/Contents.json deleted file mode 100644 index 840abb910..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"vignette.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-bold.imageset/Contents.json deleted file mode 100644 index d4f7c5fbe..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"vinyl-record-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-duotone.imageset/Contents.json deleted file mode 100644 index 46c694470..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"vinyl-record-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-fill.imageset/Contents.json deleted file mode 100644 index 10817ef3b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"vinyl-record-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-light.imageset/Contents.json deleted file mode 100644 index 04d1bdece..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"vinyl-record-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-thin.imageset/Contents.json deleted file mode 100644 index 28504477a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"vinyl-record-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record.imageset/Contents.json deleted file mode 100644 index 093addc18..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"vinyl-record.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-bold.imageset/Contents.json deleted file mode 100644 index 5ec0068f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"virtual-reality-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-duotone.imageset/Contents.json deleted file mode 100644 index 1fc70b3be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"virtual-reality-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-fill.imageset/Contents.json deleted file mode 100644 index 6c8cac84c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"virtual-reality-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-light.imageset/Contents.json deleted file mode 100644 index 06c99e895..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"virtual-reality-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-thin.imageset/Contents.json deleted file mode 100644 index 7a2a585d2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"virtual-reality-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality.imageset/Contents.json deleted file mode 100644 index 890a50da4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"virtual-reality.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-bold.imageset/Contents.json deleted file mode 100644 index 9bc2253a6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"virus-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-duotone.imageset/Contents.json deleted file mode 100644 index a3008883d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"virus-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-fill.imageset/Contents.json deleted file mode 100644 index 49cf8c089..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"virus-fill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-light.imageset/Contents.json deleted file mode 100644 index 7deb23b60..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"virus-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-thin.imageset/Contents.json deleted file mode 100644 index 7bcc78991..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"virus-thin.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus.imageset/Contents.json deleted file mode 100644 index f9f964f3a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"virus.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-bold.imageset/Contents.json deleted file mode 100644 index 7bbd2e45b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"visor-bold.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-duotone.imageset/Contents.json deleted file mode 100644 index b73ed151a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"visor-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-fill.imageset/Contents.json deleted file mode 100644 index 022fe9ce9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"visor-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-light.imageset/Contents.json deleted file mode 100644 index 82cc1dfd3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"visor-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-thin.imageset/Contents.json deleted file mode 100644 index 42c145c6b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"visor-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor.imageset/Contents.json deleted file mode 100644 index cf13558e7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"visor.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-bold.imageset/Contents.json deleted file mode 100644 index 453f303c6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"voicemail-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-duotone.imageset/Contents.json deleted file mode 100644 index 9f718ae76..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"voicemail-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-fill.imageset/Contents.json deleted file mode 100644 index 8dcd55f39..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"voicemail-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-light.imageset/Contents.json deleted file mode 100644 index a5ebe619f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"voicemail-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-thin.imageset/Contents.json deleted file mode 100644 index a24cbe88e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"voicemail-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail.imageset/Contents.json deleted file mode 100644 index 726a89919..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"voicemail.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-bold.imageset/Contents.json deleted file mode 100644 index 3e554bcd5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"volleyball-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-duotone.imageset/Contents.json deleted file mode 100644 index 674c5e3f1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"volleyball-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-fill.imageset/Contents.json deleted file mode 100644 index de5c4599c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"volleyball-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-light.imageset/Contents.json deleted file mode 100644 index 03e9979a8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"volleyball-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-thin.imageset/Contents.json deleted file mode 100644 index f11b1990d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"volleyball-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball.imageset/Contents.json deleted file mode 100644 index aad8307cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"volleyball.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-bold.imageset/Contents.json deleted file mode 100644 index 325ac2783..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"wall-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-duotone.imageset/Contents.json deleted file mode 100644 index 3436aac92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wall-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-fill.imageset/Contents.json deleted file mode 100644 index 1d7dda66e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"wall-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-light.imageset/Contents.json deleted file mode 100644 index c25dc6c71..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wall-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-thin.imageset/Contents.json deleted file mode 100644 index 52777fa19..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"wall-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall.imageset/Contents.json deleted file mode 100644 index 5bfd8a795..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"wall.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-bold.imageset/Contents.json deleted file mode 100644 index 86f116801..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wallet-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-duotone.imageset/Contents.json deleted file mode 100644 index 429f75441..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wallet-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-fill.imageset/Contents.json deleted file mode 100644 index 1a26ab94c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wallet-fill.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-light.imageset/Contents.json deleted file mode 100644 index 8140cc255..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"wallet-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-thin.imageset/Contents.json deleted file mode 100644 index e8e038410..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wallet-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet.imageset/Contents.json deleted file mode 100644 index 7465bb702..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"wallet.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-bold.imageset/Contents.json deleted file mode 100644 index 62b25a890..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"warehouse-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-duotone.imageset/Contents.json deleted file mode 100644 index 8527fb294..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"warehouse-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-fill.imageset/Contents.json deleted file mode 100644 index 1bcdd8a2e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"warehouse-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-light.imageset/Contents.json deleted file mode 100644 index 3f2bf3b40..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"warehouse-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-thin.imageset/Contents.json deleted file mode 100644 index ea851735e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"warehouse-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse.imageset/Contents.json deleted file mode 100644 index 635fc8b10..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"warehouse.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-bold.imageset/Contents.json deleted file mode 100644 index fa9051301..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"warning-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-bold.imageset/Contents.json deleted file mode 100644 index e392d9bc1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"warning-circle-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-duotone.imageset/Contents.json deleted file mode 100644 index 0ea476443..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"warning-circle-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-fill.imageset/Contents.json deleted file mode 100644 index daecb235c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"warning-circle-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-light.imageset/Contents.json deleted file mode 100644 index 8400a002a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"warning-circle-light.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-thin.imageset/Contents.json deleted file mode 100644 index 658e96421..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"warning-circle-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle.imageset/Contents.json deleted file mode 100644 index 3d8e1ca33..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"warning-circle.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-bold.imageset/Contents.json deleted file mode 100644 index 8bb255e54..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"warning-diamond-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-duotone.imageset/Contents.json deleted file mode 100644 index 170a6a48a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"warning-diamond-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-fill.imageset/Contents.json deleted file mode 100644 index 4c0066ce3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"warning-diamond-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-light.imageset/Contents.json deleted file mode 100644 index 10b70b39e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"warning-diamond-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-thin.imageset/Contents.json deleted file mode 100644 index 02fae5698..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"warning-diamond-thin.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond.imageset/Contents.json deleted file mode 100644 index 731b406c7..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"warning-diamond.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-duotone.imageset/Contents.json deleted file mode 100644 index 6bb31b766..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"warning-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-fill.imageset/Contents.json deleted file mode 100644 index 1d7b1469e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"warning-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-light.imageset/Contents.json deleted file mode 100644 index a9980620e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"warning-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-bold.imageset/Contents.json deleted file mode 100644 index 382ebf08b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"warning-octagon-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-duotone.imageset/Contents.json deleted file mode 100644 index f07bfa4e0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"warning-octagon-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-fill.imageset/Contents.json deleted file mode 100644 index 5b6d35d48..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"warning-octagon-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-light.imageset/Contents.json deleted file mode 100644 index 4cf312376..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"warning-octagon-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-thin.imageset/Contents.json deleted file mode 100644 index b213e13ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"warning-octagon-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon.imageset/Contents.json deleted file mode 100644 index dbaaa2ef3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"warning-octagon.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-thin.imageset/Contents.json deleted file mode 100644 index 560440685..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"warning-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning.imageset/Contents.json deleted file mode 100644 index 93e53bae2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"warning.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-bold.imageset/Contents.json deleted file mode 100644 index 97b2571cb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"washing-machine-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-duotone.imageset/Contents.json deleted file mode 100644 index b2e35440c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"washing-machine-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-fill.imageset/Contents.json deleted file mode 100644 index 563ec1e3f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"washing-machine-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-light.imageset/Contents.json deleted file mode 100644 index cf8ebc7bb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"washing-machine-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-thin.imageset/Contents.json deleted file mode 100644 index 88dc767ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"washing-machine-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine.imageset/Contents.json deleted file mode 100644 index 09a990bbf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"washing-machine.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-bold.imageset/Contents.json deleted file mode 100644 index f4705447b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"watch-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-duotone.imageset/Contents.json deleted file mode 100644 index f7c6148db..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"watch-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-fill.imageset/Contents.json deleted file mode 100644 index 20800418c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"watch-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-light.imageset/Contents.json deleted file mode 100644 index eb07cd51b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"watch-light.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-thin.imageset/Contents.json deleted file mode 100644 index be26526d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"watch-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch.imageset/Contents.json deleted file mode 100644 index 5c752cd74..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"watch.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-bold.imageset/Contents.json deleted file mode 100644 index 6fabe3428..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wave-sawtooth-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-duotone.imageset/Contents.json deleted file mode 100644 index 09553e5ff..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wave-sawtooth-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-fill.imageset/Contents.json deleted file mode 100644 index 8350d42b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"wave-sawtooth-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-light.imageset/Contents.json deleted file mode 100644 index 2413d27e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wave-sawtooth-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-thin.imageset/Contents.json deleted file mode 100644 index c4e1cfa6e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"wave-sawtooth-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth.imageset/Contents.json deleted file mode 100644 index 8dfeb0f36..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wave-sawtooth.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-bold.imageset/Contents.json deleted file mode 100644 index 04d2bbc38..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"wave-sine-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-duotone.imageset/Contents.json deleted file mode 100644 index a6ea6bc47..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"wave-sine-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-fill.imageset/Contents.json deleted file mode 100644 index a732fcdec..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wave-sine-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-light.imageset/Contents.json deleted file mode 100644 index b2f6826f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wave-sine-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-thin.imageset/Contents.json deleted file mode 100644 index 49e0a545c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wave-sine-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine.imageset/Contents.json deleted file mode 100644 index 29eb8c8d9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"wave-sine.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-bold.imageset/Contents.json deleted file mode 100644 index 73c5d2aab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"wave-square-bold.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-duotone.imageset/Contents.json deleted file mode 100644 index 3985f47f3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wave-square-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-fill.imageset/Contents.json deleted file mode 100644 index a58eb727f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wave-square-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-light.imageset/Contents.json deleted file mode 100644 index a279c1f35..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"wave-square-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-thin.imageset/Contents.json deleted file mode 100644 index 11ccdb65c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"wave-square-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square.imageset/Contents.json deleted file mode 100644 index a8572c78e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"wave-square.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-bold.imageset/Contents.json deleted file mode 100644 index ef8e8197d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"wave-triangle-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-duotone.imageset/Contents.json deleted file mode 100644 index 9f5cfcd2b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wave-triangle-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-fill.imageset/Contents.json deleted file mode 100644 index 7a089b9b2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"wave-triangle-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-light.imageset/Contents.json deleted file mode 100644 index 7bdf5b695..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wave-triangle-light.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-thin.imageset/Contents.json deleted file mode 100644 index 984264053..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wave-triangle-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle.imageset/Contents.json deleted file mode 100644 index 10bf3d32a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wave-triangle.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-bold.imageset/Contents.json deleted file mode 100644 index 14562bbde..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"waveform-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-duotone.imageset/Contents.json deleted file mode 100644 index 926516d00..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"waveform-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-fill.imageset/Contents.json deleted file mode 100644 index c5f318bee..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"waveform-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-light.imageset/Contents.json deleted file mode 100644 index 4973defa6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"waveform-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-bold.imageset/Contents.json deleted file mode 100644 index f13309159..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"waveform-slash-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-duotone.imageset/Contents.json deleted file mode 100644 index a984b70c5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"waveform-slash-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-fill.imageset/Contents.json deleted file mode 100644 index d52dd8c4d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"waveform-slash-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-light.imageset/Contents.json deleted file mode 100644 index cdb8f8146..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"waveform-slash-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-thin.imageset/Contents.json deleted file mode 100644 index c2f3e2fb8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"waveform-slash-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash.imageset/Contents.json deleted file mode 100644 index a616e6021..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"waveform-slash.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-thin.imageset/Contents.json deleted file mode 100644 index 6af3776a0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"waveform-thin.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform.imageset/Contents.json deleted file mode 100644 index 15e2d11f5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"waveform.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-bold.imageset/Contents.json deleted file mode 100644 index 5043fee32..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"waves-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-duotone.imageset/Contents.json deleted file mode 100644 index 201772887..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"waves-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-fill.imageset/Contents.json deleted file mode 100644 index 50f18e331..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"waves-fill.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-light.imageset/Contents.json deleted file mode 100644 index 79782838f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"waves-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-thin.imageset/Contents.json deleted file mode 100644 index ff478fc37..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"waves-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves.imageset/Contents.json deleted file mode 100644 index 9155298cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"waves.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-bold.imageset/Contents.json deleted file mode 100644 index 16457d5ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"webcam-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-duotone.imageset/Contents.json deleted file mode 100644 index 6417c917a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"webcam-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-fill.imageset/Contents.json deleted file mode 100644 index fb531f408..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"webcam-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-light.imageset/Contents.json deleted file mode 100644 index df7262bbd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"webcam-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-bold.imageset/Contents.json deleted file mode 100644 index a628f9fab..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"webcam-slash-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-duotone.imageset/Contents.json deleted file mode 100644 index 60ebf8fe6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"webcam-slash-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-fill.imageset/Contents.json deleted file mode 100644 index 50afaebc9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"webcam-slash-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-light.imageset/Contents.json deleted file mode 100644 index 27b2deeae..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"webcam-slash-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-thin.imageset/Contents.json deleted file mode 100644 index fae113deb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"webcam-slash-thin.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash.imageset/Contents.json deleted file mode 100644 index 7b5ba67d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"webcam-slash.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-thin.imageset/Contents.json deleted file mode 100644 index e04ede855..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"webcam-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam.imageset/Contents.json deleted file mode 100644 index d4c7919cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"webcam.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-bold.imageset/Contents.json deleted file mode 100644 index 675e4d7ac..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"webhooks-logo-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-duotone.imageset/Contents.json deleted file mode 100644 index a49a9bc68..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"webhooks-logo-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-fill.imageset/Contents.json deleted file mode 100644 index f286bd764..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"webhooks-logo-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-light.imageset/Contents.json deleted file mode 100644 index fd936cccd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"webhooks-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-thin.imageset/Contents.json deleted file mode 100644 index 32fef6d47..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"webhooks-logo-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo.imageset/Contents.json deleted file mode 100644 index 052dcb3c0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"webhooks-logo.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-bold.imageset/Contents.json deleted file mode 100644 index d740f6a83..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wechat-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-duotone.imageset/Contents.json deleted file mode 100644 index d7efc24d6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wechat-logo-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-fill.imageset/Contents.json deleted file mode 100644 index 3dc85c7c4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"wechat-logo-fill.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-light.imageset/Contents.json deleted file mode 100644 index 2c8e6bb9c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"wechat-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-thin.imageset/Contents.json deleted file mode 100644 index e3f4cbcfa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"wechat-logo-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo.imageset/Contents.json deleted file mode 100644 index e2b1da96d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wechat-logo.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-bold.imageset/Contents.json deleted file mode 100644 index 5c10b26aa..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"whatsapp-logo-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-duotone.imageset/Contents.json deleted file mode 100644 index 4a61dca99..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"whatsapp-logo-duotone.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-fill.imageset/Contents.json deleted file mode 100644 index 1c2ee6473..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"whatsapp-logo-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-light.imageset/Contents.json deleted file mode 100644 index 4ce79fd12..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"whatsapp-logo-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-thin.imageset/Contents.json deleted file mode 100644 index e9bbee1f4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"whatsapp-logo-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo.imageset/Contents.json deleted file mode 100644 index 3b64063d8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"whatsapp-logo.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-bold.imageset/Contents.json deleted file mode 100644 index 0021ad9b4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"wheelchair-bold.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-duotone.imageset/Contents.json deleted file mode 100644 index 16bdf0053..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wheelchair-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-fill.imageset/Contents.json deleted file mode 100644 index c0d51c2ad..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"wheelchair-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-light.imageset/Contents.json deleted file mode 100644 index eeaee5470..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wheelchair-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-bold.imageset/Contents.json deleted file mode 100644 index 577d27a81..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"wheelchair-motion-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-duotone.imageset/Contents.json deleted file mode 100644 index a1386bf96..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wheelchair-motion-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-fill.imageset/Contents.json deleted file mode 100644 index 89ed7860d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"wheelchair-motion-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-light.imageset/Contents.json deleted file mode 100644 index 435fd543e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"wheelchair-motion-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-thin.imageset/Contents.json deleted file mode 100644 index ee7cdf886..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wheelchair-motion-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion.imageset/Contents.json deleted file mode 100644 index de246e596..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"wheelchair-motion.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-thin.imageset/Contents.json deleted file mode 100644 index cf0f02bfb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wheelchair-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair.imageset/Contents.json deleted file mode 100644 index 802b7348a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"wheelchair.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-bold.imageset/Contents.json deleted file mode 100644 index d7b1b7d92..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wifi-high-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-duotone.imageset/Contents.json deleted file mode 100644 index 34c96d50a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wifi-high-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-fill.imageset/Contents.json deleted file mode 100644 index a4f1d197f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wifi-high-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-light.imageset/Contents.json deleted file mode 100644 index 31da53038..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"wifi-high-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-thin.imageset/Contents.json deleted file mode 100644 index 8808bcfb0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wifi-high-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high.imageset/Contents.json deleted file mode 100644 index e3a88b9f8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"wifi-high.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-bold.imageset/Contents.json deleted file mode 100644 index 9b44b8bcf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wifi-low-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-duotone.imageset/Contents.json deleted file mode 100644 index def9f9070..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"wifi-low-duotone.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-fill.imageset/Contents.json deleted file mode 100644 index 7b4aef73a..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"wifi-low-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-light.imageset/Contents.json deleted file mode 100644 index f7a445257..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wifi-low-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-thin.imageset/Contents.json deleted file mode 100644 index 595f25be6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"wifi-low-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low.imageset/Contents.json deleted file mode 100644 index d301d4c2d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wifi-low.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-bold.imageset/Contents.json deleted file mode 100644 index 8035a39fb..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wifi-medium-bold.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-duotone.imageset/Contents.json deleted file mode 100644 index 46284eacd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"wifi-medium-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-fill.imageset/Contents.json deleted file mode 100644 index 8dea39f33..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wifi-medium-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-light.imageset/Contents.json deleted file mode 100644 index 7de691755..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wifi-medium-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-thin.imageset/Contents.json deleted file mode 100644 index e2efa8139..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wifi-medium-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium.imageset/Contents.json deleted file mode 100644 index 77b1e80f0..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wifi-medium.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-bold.imageset/Contents.json deleted file mode 100644 index 2f88c27e4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"wifi-none-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-duotone.imageset/Contents.json deleted file mode 100644 index b31fe7187..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"wifi-none-duotone.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-fill.imageset/Contents.json deleted file mode 100644 index 1dae5116d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wifi-none-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-light.imageset/Contents.json deleted file mode 100644 index 5f14e712e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"filename":"wifi-none-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-thin.imageset/Contents.json deleted file mode 100644 index ba26d8db3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wifi-none-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none.imageset/Contents.json deleted file mode 100644 index 8595e1c1c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wifi-none.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-bold.imageset/Contents.json deleted file mode 100644 index 6d16d6030..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"wifi-slash-bold.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-duotone.imageset/Contents.json deleted file mode 100644 index df32ac029..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wifi-slash-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-fill.imageset/Contents.json deleted file mode 100644 index 5564dda41..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"wifi-slash-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-light.imageset/Contents.json deleted file mode 100644 index cfe8b0670..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"wifi-slash-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-thin.imageset/Contents.json deleted file mode 100644 index e8add614d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wifi-slash-thin.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash.imageset/Contents.json deleted file mode 100644 index 89ce6bc15..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wifi-slash.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-bold.imageset/Contents.json deleted file mode 100644 index 6ee290a56..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wifi-x-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-duotone.imageset/Contents.json deleted file mode 100644 index 50cdca3bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"wifi-x-duotone.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-fill.imageset/Contents.json deleted file mode 100644 index de39d66e6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wifi-x-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-light.imageset/Contents.json deleted file mode 100644 index ab600ae9f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wifi-x-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-thin.imageset/Contents.json deleted file mode 100644 index 0706c29b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"wifi-x-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x.imageset/Contents.json deleted file mode 100644 index 5cd52a0e8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"wifi-x.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-bold.imageset/Contents.json deleted file mode 100644 index 93809ded5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"wind-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-duotone.imageset/Contents.json deleted file mode 100644 index 5fca96911..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"wind-duotone.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-fill.imageset/Contents.json deleted file mode 100644 index 9773e9266..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wind-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-light.imageset/Contents.json deleted file mode 100644 index 4c2793d5d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wind-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-thin.imageset/Contents.json deleted file mode 100644 index 3217d7b28..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"wind-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind.imageset/Contents.json deleted file mode 100644 index 71408b593..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wind.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-bold.imageset/Contents.json deleted file mode 100644 index 796423e58..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"windmill-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-duotone.imageset/Contents.json deleted file mode 100644 index 6974aacfd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"windmill-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-fill.imageset/Contents.json deleted file mode 100644 index 6e6161f61..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"windmill-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-light.imageset/Contents.json deleted file mode 100644 index e2f882990..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"windmill-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-thin.imageset/Contents.json deleted file mode 100644 index a9022323e..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"windmill-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill.imageset/Contents.json deleted file mode 100644 index 3b1a1a102..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"windmill.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-bold.imageset/Contents.json deleted file mode 100644 index 7ff2b467b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"windows-logo-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-duotone.imageset/Contents.json deleted file mode 100644 index cc3fd6176..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"windows-logo-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-fill.imageset/Contents.json deleted file mode 100644 index e3e93cd45..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"windows-logo-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-light.imageset/Contents.json deleted file mode 100644 index 9c83d7208..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"windows-logo-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-thin.imageset/Contents.json deleted file mode 100644 index 613180af2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"windows-logo-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo.imageset/Contents.json deleted file mode 100644 index 9e8308d17..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"windows-logo.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-bold.imageset/Contents.json deleted file mode 100644 index 31078b9da..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wine-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-duotone.imageset/Contents.json deleted file mode 100644 index 6ffbebf2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"wine-duotone.svg"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-fill.imageset/Contents.json deleted file mode 100644 index 6b43fc084..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"wine-fill.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-light.imageset/Contents.json deleted file mode 100644 index ab431ae26..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wine-light.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-thin.imageset/Contents.json deleted file mode 100644 index 42c90de39..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"wine-thin.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine.imageset/Contents.json deleted file mode 100644 index 8c297ab88..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"wine.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-bold.imageset/Contents.json deleted file mode 100644 index e8eed02ea..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"wrench-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-duotone.imageset/Contents.json deleted file mode 100644 index ca2cb50e3..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"wrench-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-fill.imageset/Contents.json deleted file mode 100644 index 4b2eb6dc5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wrench-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-light.imageset/Contents.json deleted file mode 100644 index 70ebc6a6c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"wrench-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-thin.imageset/Contents.json deleted file mode 100644 index d3656f328..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wrench-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench.imageset/Contents.json deleted file mode 100644 index af90fd285..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"wrench.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-bold.imageset/Contents.json deleted file mode 100644 index 6c069491f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"x-bold.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-bold.imageset/Contents.json deleted file mode 100644 index fdee9b81c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"filename":"x-circle-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-duotone.imageset/Contents.json deleted file mode 100644 index 94618b4dd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"x-circle-duotone.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-fill.imageset/Contents.json deleted file mode 100644 index 08b737b79..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"x-circle-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-light.imageset/Contents.json deleted file mode 100644 index 0e0cd3056..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"x-circle-light.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-thin.imageset/Contents.json deleted file mode 100644 index f5a1b7796..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"x-circle-thin.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle.imageset/Contents.json deleted file mode 100644 index 44a5d495c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"x-circle.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-duotone.imageset/Contents.json deleted file mode 100644 index f65ede69d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"x-duotone.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-fill.imageset/Contents.json deleted file mode 100644 index 199ece365..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"x-fill.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-light.imageset/Contents.json deleted file mode 100644 index b1152dcc4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"x-light.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-bold.imageset/Contents.json deleted file mode 100644 index 12e5841cc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"filename":"x-logo-bold.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-duotone.imageset/Contents.json deleted file mode 100644 index c91e501bd..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"x-logo-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-fill.imageset/Contents.json deleted file mode 100644 index 4b9acd19f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"x-logo-fill.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-light.imageset/Contents.json deleted file mode 100644 index b09a1ad18..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"x-logo-light.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-thin.imageset/Contents.json deleted file mode 100644 index fb2197b4b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"x-logo-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo.imageset/Contents.json deleted file mode 100644 index 6f03accf5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"x-logo.svg"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-bold.imageset/Contents.json deleted file mode 100644 index 040144217..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"x-square-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-duotone.imageset/Contents.json deleted file mode 100644 index da78d7ac9..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"x-square-duotone.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-fill.imageset/Contents.json deleted file mode 100644 index 46aff40b8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"x-square-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-light.imageset/Contents.json deleted file mode 100644 index 689f65899..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"x-square-light.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-thin.imageset/Contents.json deleted file mode 100644 index 53fe3de53..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"x-square-thin.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square.imageset/Contents.json deleted file mode 100644 index 70b2a1a4b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"x-square.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-thin.imageset/Contents.json deleted file mode 100644 index 6af069caf..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"x-thin.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x.imageset/Contents.json deleted file mode 100644 index ec74f357d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"x.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-bold.imageset/Contents.json deleted file mode 100644 index 69370fcc8..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"},"images":[{"filename":"yarn-bold.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-duotone.imageset/Contents.json deleted file mode 100644 index c62a6472f..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"yarn-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-fill.imageset/Contents.json deleted file mode 100644 index 92d036d9b..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"info":{"author":"xcode","version":1},"images":[{"idiom":"universal","filename":"yarn-fill.svg"}],"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-light.imageset/Contents.json deleted file mode 100644 index 9b91553b6..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"yarn-light.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-thin.imageset/Contents.json deleted file mode 100644 index 74a073565..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"yarn-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn.imageset/Contents.json deleted file mode 100644 index 2824034be..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"},"images":[{"idiom":"universal","filename":"yarn.svg"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-bold.imageset/Contents.json deleted file mode 100644 index 45b7f93a2..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"yin-yang-bold.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-duotone.imageset/Contents.json deleted file mode 100644 index 7f10030dc..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"yin-yang-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-fill.imageset/Contents.json deleted file mode 100644 index 1df615a27..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"info":{"author":"xcode","version":1},"images":[{"filename":"yin-yang-fill.svg","idiom":"universal"}]} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-light.imageset/Contents.json deleted file mode 100644 index efffa1e2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"yin-yang-light.svg","idiom":"universal"}],"properties":{"template-rendering-intent":"template"},"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-thin.imageset/Contents.json deleted file mode 100644 index 56c7c67e5..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"yin-yang-thin.svg"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang.imageset/Contents.json deleted file mode 100644 index cfaf3b3d4..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"yin-yang.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-bold.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-bold.imageset/Contents.json deleted file mode 100644 index 4ac5e2620..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-bold.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"idiom":"universal","filename":"youtube-logo-bold.svg"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-duotone.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-duotone.imageset/Contents.json deleted file mode 100644 index 1c7c139d1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-duotone.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"youtube-logo-duotone.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-fill.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-fill.imageset/Contents.json deleted file mode 100644 index 4d6adcb2c..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-fill.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"youtube-logo-fill.svg","idiom":"universal"}],"info":{"version":1,"author":"xcode"},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-light.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-light.imageset/Contents.json deleted file mode 100644 index 88085f348..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-light.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"idiom":"universal","filename":"youtube-logo-light.svg"}],"info":{"version":1,"author":"xcode"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-thin.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-thin.imageset/Contents.json deleted file mode 100644 index e6d0dc1a1..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-thin.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"properties":{"template-rendering-intent":"template"},"images":[{"filename":"youtube-logo-thin.svg","idiom":"universal"}],"info":{"author":"xcode","version":1}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo.imageset/Contents.json b/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo.imageset/Contents.json deleted file mode 100644 index 7cc78853d..000000000 --- a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo.imageset/Contents.json +++ /dev/null @@ -1 +0,0 @@ -{"images":[{"filename":"youtube-logo.svg","idiom":"universal"}],"info":{"author":"xcode","version":1},"properties":{"template-rendering-intent":"template"}} \ No newline at end of file diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-bold.imageset/acorn-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/acorn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-bold.imageset/acorn-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/acorn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-bold.imageset/address-book-tabs-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/address-book-tabs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-bold.imageset/address-book-tabs-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/address-book-tabs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-bold.imageset/address-book-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/address-book.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-bold.imageset/address-book-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/address-book.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-bold.imageset/air-traffic-control-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/air-traffic-control.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-bold.imageset/air-traffic-control-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/air-traffic-control.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-bold.imageset/airplane-in-flight-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/airplane-in-flight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-bold.imageset/airplane-in-flight-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/airplane-in-flight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-bold.imageset/airplane-landing-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/airplane-landing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-bold.imageset/airplane-landing-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/airplane-landing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-bold.imageset/airplane-takeoff-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/airplane-takeoff.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-bold.imageset/airplane-takeoff-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/airplane-takeoff.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-bold.imageset/airplane-taxiing-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/airplane-taxiing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-bold.imageset/airplane-taxiing-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/airplane-taxiing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-bold.imageset/airplane-tilt-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/airplane-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-bold.imageset/airplane-tilt-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/airplane-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-bold.imageset/airplane-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/airplane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-bold.imageset/airplane-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/airplane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-bold.imageset/airplay-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/airplay.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-bold.imageset/airplay-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/airplay.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-bold.imageset/alarm-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/alarm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-bold.imageset/alarm-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/alarm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-bold.imageset/alien-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/alien.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-bold.imageset/alien-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/alien.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-bold.imageset/align-bottom-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-bottom-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-bold.imageset/align-bottom-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-bottom-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-bold.imageset/align-bottom-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-bold.imageset/align-bottom-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-bold.imageset/align-center-horizontal-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-center-horizontal-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-bold.imageset/align-center-horizontal-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-center-horizontal-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-bold.imageset/align-center-horizontal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-center-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-bold.imageset/align-center-horizontal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-center-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-bold.imageset/align-center-vertical-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-center-vertical-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-bold.imageset/align-center-vertical-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-center-vertical-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-bold.imageset/align-center-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-center-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-bold.imageset/align-center-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-center-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-bold.imageset/align-left-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-left-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-bold.imageset/align-left-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-left-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-bold.imageset/align-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-bold.imageset/align-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-bold.imageset/align-right-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-right-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-bold.imageset/align-right-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-right-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-bold.imageset/align-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-bold.imageset/align-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-bold.imageset/align-top-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-top-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-bold.imageset/align-top-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-top-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-bold.imageset/align-top-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-top.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-bold.imageset/align-top-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/align-top.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-bold.imageset/amazon-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/amazon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-bold.imageset/amazon-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/amazon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-bold.imageset/ambulance-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/ambulance.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-bold.imageset/ambulance-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/ambulance.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-bold.imageset/anchor-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/anchor-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-bold.imageset/anchor-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/anchor-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-bold.imageset/anchor-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/anchor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-bold.imageset/anchor-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/anchor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-bold.imageset/android-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/android-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-bold.imageset/android-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/android-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-bold.imageset/angle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/angle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-bold.imageset/angle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/angle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-bold.imageset/angular-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/angular-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-bold.imageset/angular-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/angular-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-bold.imageset/aperture-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/aperture.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-bold.imageset/aperture-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/aperture.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-bold.imageset/app-store-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/app-store-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-bold.imageset/app-store-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/app-store-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-bold.imageset/app-window-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/app-window.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-bold.imageset/app-window-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/app-window.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-bold.imageset/apple-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/apple-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-bold.imageset/apple-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/apple-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-bold.imageset/apple-podcasts-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/apple-podcasts-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-bold.imageset/apple-podcasts-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/apple-podcasts-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-bold.imageset/approximate-equals-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/approximate-equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-bold.imageset/approximate-equals-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/approximate-equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-bold.imageset/archive-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/archive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-bold.imageset/archive-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/archive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-bold.imageset/armchair-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/armchair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-bold.imageset/armchair-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/armchair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-bold.imageset/arrow-arc-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-arc-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-bold.imageset/arrow-arc-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-arc-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-bold.imageset/arrow-arc-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-arc-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-bold.imageset/arrow-arc-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-arc-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-bold.imageset/arrow-bend-double-up-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-double-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-bold.imageset/arrow-bend-double-up-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-double-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-bold.imageset/arrow-bend-double-up-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-double-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-bold.imageset/arrow-bend-double-up-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-double-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-bold.imageset/arrow-bend-down-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-bold.imageset/arrow-bend-down-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-bold.imageset/arrow-bend-down-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-bold.imageset/arrow-bend-down-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-bold.imageset/arrow-bend-left-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-bold.imageset/arrow-bend-left-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-bold.imageset/arrow-bend-left-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-bold.imageset/arrow-bend-left-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-bold.imageset/arrow-bend-right-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-bold.imageset/arrow-bend-right-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-bold.imageset/arrow-bend-right-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-bold.imageset/arrow-bend-right-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-bold.imageset/arrow-bend-up-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-bold.imageset/arrow-bend-up-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-bold.imageset/arrow-bend-up-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-bold.imageset/arrow-bend-up-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-bend-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-bold.imageset/arrow-circle-down-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-bold.imageset/arrow-circle-down-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-bold.imageset/arrow-circle-down-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-bold.imageset/arrow-circle-down-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-bold.imageset/arrow-circle-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-bold.imageset/arrow-circle-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-bold.imageset/arrow-circle-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-bold.imageset/arrow-circle-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-bold.imageset/arrow-circle-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-bold.imageset/arrow-circle-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-bold.imageset/arrow-circle-up-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-bold.imageset/arrow-circle-up-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-bold.imageset/arrow-circle-up-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-bold.imageset/arrow-circle-up-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-bold.imageset/arrow-circle-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-bold.imageset/arrow-circle-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-circle-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-bold.imageset/arrow-clockwise-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-bold.imageset/arrow-clockwise-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-bold.imageset/arrow-counter-clockwise-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-bold.imageset/arrow-counter-clockwise-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-bold.imageset/arrow-down-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-bold.imageset/arrow-down-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-bold.imageset/arrow-down-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-bold.imageset/arrow-down-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-bold.imageset/arrow-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-bold.imageset/arrow-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-bold.imageset/arrow-elbow-down-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-bold.imageset/arrow-elbow-down-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-bold.imageset/arrow-elbow-down-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-bold.imageset/arrow-elbow-down-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-bold.imageset/arrow-elbow-left-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-bold.imageset/arrow-elbow-left-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-bold.imageset/arrow-elbow-left-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-bold.imageset/arrow-elbow-left-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-bold.imageset/arrow-elbow-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-bold.imageset/arrow-elbow-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-bold.imageset/arrow-elbow-right-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-bold.imageset/arrow-elbow-right-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-bold.imageset/arrow-elbow-right-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-bold.imageset/arrow-elbow-right-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-bold.imageset/arrow-elbow-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-bold.imageset/arrow-elbow-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-bold.imageset/arrow-elbow-up-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-bold.imageset/arrow-elbow-up-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-bold.imageset/arrow-elbow-up-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-bold.imageset/arrow-elbow-up-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-elbow-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-bold.imageset/arrow-fat-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-bold.imageset/arrow-fat-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-bold.imageset/arrow-fat-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-bold.imageset/arrow-fat-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-bold.imageset/arrow-fat-line-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-bold.imageset/arrow-fat-line-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-bold.imageset/arrow-fat-line-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-bold.imageset/arrow-fat-line-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-bold.imageset/arrow-fat-line-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-bold.imageset/arrow-fat-line-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-bold.imageset/arrow-fat-line-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-bold.imageset/arrow-fat-line-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-bold.imageset/arrow-fat-lines-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-lines-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-bold.imageset/arrow-fat-lines-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-lines-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-bold.imageset/arrow-fat-lines-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-lines-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-bold.imageset/arrow-fat-lines-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-lines-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-bold.imageset/arrow-fat-lines-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-lines-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-bold.imageset/arrow-fat-lines-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-lines-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-bold.imageset/arrow-fat-lines-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-lines-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-bold.imageset/arrow-fat-lines-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-lines-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-bold.imageset/arrow-fat-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-bold.imageset/arrow-fat-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-bold.imageset/arrow-fat-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-bold.imageset/arrow-fat-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-fat-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-bold.imageset/arrow-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-bold.imageset/arrow-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-bold.imageset/arrow-line-down-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-bold.imageset/arrow-line-down-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-bold.imageset/arrow-line-down-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-bold.imageset/arrow-line-down-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-bold.imageset/arrow-line-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-bold.imageset/arrow-line-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-bold.imageset/arrow-line-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-bold.imageset/arrow-line-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-bold.imageset/arrow-line-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-bold.imageset/arrow-line-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-bold.imageset/arrow-line-up-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-bold.imageset/arrow-line-up-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-bold.imageset/arrow-line-up-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-bold.imageset/arrow-line-up-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-bold.imageset/arrow-line-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-bold.imageset/arrow-line-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-bold.imageset/arrow-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-bold.imageset/arrow-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-bold.imageset/arrow-square-down-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-bold.imageset/arrow-square-down-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-bold.imageset/arrow-square-down-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-bold.imageset/arrow-square-down-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-bold.imageset/arrow-square-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-bold.imageset/arrow-square-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-bold.imageset/arrow-square-in-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-bold.imageset/arrow-square-in-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-bold.imageset/arrow-square-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-bold.imageset/arrow-square-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-bold.imageset/arrow-square-out-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-bold.imageset/arrow-square-out-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-bold.imageset/arrow-square-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-bold.imageset/arrow-square-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-bold.imageset/arrow-square-up-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-bold.imageset/arrow-square-up-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-bold.imageset/arrow-square-up-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-bold.imageset/arrow-square-up-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-bold.imageset/arrow-square-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-bold.imageset/arrow-square-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-square-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-bold.imageset/arrow-u-down-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-bold.imageset/arrow-u-down-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-bold.imageset/arrow-u-down-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-bold.imageset/arrow-u-down-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-bold.imageset/arrow-u-left-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-bold.imageset/arrow-u-left-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-bold.imageset/arrow-u-left-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-bold.imageset/arrow-u-left-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-bold.imageset/arrow-u-right-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-bold.imageset/arrow-u-right-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-bold.imageset/arrow-u-right-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-bold.imageset/arrow-u-right-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-bold.imageset/arrow-u-up-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-bold.imageset/arrow-u-up-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-bold.imageset/arrow-u-up-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-bold.imageset/arrow-u-up-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-u-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-bold.imageset/arrow-up-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-bold.imageset/arrow-up-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-bold.imageset/arrow-up-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-bold.imageset/arrow-up-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-bold.imageset/arrow-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-bold.imageset/arrow-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-bold.imageset/arrows-clockwise-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-bold.imageset/arrows-clockwise-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-bold.imageset/arrows-counter-clockwise-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-bold.imageset/arrows-counter-clockwise-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-bold.imageset/arrows-down-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-down-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-bold.imageset/arrows-down-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-down-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-bold.imageset/arrows-horizontal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-bold.imageset/arrows-horizontal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-bold.imageset/arrows-in-cardinal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-in-cardinal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-bold.imageset/arrows-in-cardinal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-in-cardinal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-bold.imageset/arrows-in-line-horizontal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-in-line-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-bold.imageset/arrows-in-line-horizontal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-in-line-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-bold.imageset/arrows-in-line-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-in-line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-bold.imageset/arrows-in-line-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-in-line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-bold.imageset/arrows-in-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-in-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-bold.imageset/arrows-in-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-in-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-bold.imageset/arrows-in-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-bold.imageset/arrows-in-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-bold.imageset/arrows-left-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-left-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-bold.imageset/arrows-left-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-left-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-bold.imageset/arrows-merge-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-merge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-bold.imageset/arrows-merge-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-merge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-bold.imageset/arrows-out-cardinal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-out-cardinal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-bold.imageset/arrows-out-cardinal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-out-cardinal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-bold.imageset/arrows-out-line-horizontal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-out-line-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-bold.imageset/arrows-out-line-horizontal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-out-line-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-bold.imageset/arrows-out-line-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-out-line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-bold.imageset/arrows-out-line-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-out-line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-bold.imageset/arrows-out-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-out-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-bold.imageset/arrows-out-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-out-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-bold.imageset/arrows-out-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-bold.imageset/arrows-out-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-bold.imageset/arrows-split-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-split.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-bold.imageset/arrows-split-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-split.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-bold.imageset/arrows-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-bold.imageset/arrows-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/arrows-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-bold.imageset/article-medium-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/article-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-bold.imageset/article-medium-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/article-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-bold.imageset/article-ny-times-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/article-ny-times.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-bold.imageset/article-ny-times-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/article-ny-times.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-bold.imageset/article-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/article.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-bold.imageset/article-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/article.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-bold.imageset/asclepius-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/asclepius.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-bold.imageset/asclepius-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/asclepius.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-bold.imageset/asterisk-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/asterisk-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-bold.imageset/asterisk-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/asterisk-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-bold.imageset/asterisk-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/asterisk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-bold.imageset/asterisk-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/asterisk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-bold.imageset/at-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/at.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-bold.imageset/at-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/at.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-bold.imageset/atom-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/atom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-bold.imageset/atom-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/atom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-bold.imageset/avocado-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/avocado.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-bold.imageset/avocado-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/avocado.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-bold.imageset/axe-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/axe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-bold.imageset/axe-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/axe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-bold.imageset/baby-carriage-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/baby-carriage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-bold.imageset/baby-carriage-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/baby-carriage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-bold.imageset/baby-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/baby.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-bold.imageset/baby-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/baby.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-bold.imageset/backpack-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/backpack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-bold.imageset/backpack-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/backpack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-bold.imageset/backspace-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/backspace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-bold.imageset/backspace-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/backspace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-bold.imageset/bag-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-bold.imageset/bag-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-bold.imageset/bag-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-bold.imageset/bag-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-bold.imageset/balloon-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/balloon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-bold.imageset/balloon-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/balloon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-bold.imageset/bandaids-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bandaids.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-bold.imageset/bandaids-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bandaids.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-bold.imageset/bank-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-bold.imageset/bank-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-bold.imageset/barbell-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/barbell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-bold.imageset/barbell-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/barbell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-bold.imageset/barcode-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/barcode.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-bold.imageset/barcode-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/barcode.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-bold.imageset/barn-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/barn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-bold.imageset/barn-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/barn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-bold.imageset/barricade-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/barricade.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-bold.imageset/barricade-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/barricade.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-bold.imageset/baseball-cap-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/baseball-cap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-bold.imageset/baseball-cap-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/baseball-cap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-bold.imageset/baseball-helmet-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/baseball-helmet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-bold.imageset/baseball-helmet-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/baseball-helmet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-bold.imageset/baseball-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/baseball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-bold.imageset/baseball-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/baseball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-bold.imageset/basket-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/basket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-bold.imageset/basket-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/basket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-bold.imageset/basketball-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/basketball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-bold.imageset/basketball-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/basketball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-bold.imageset/bathtub-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bathtub.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-bold.imageset/bathtub-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bathtub.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-bold.imageset/battery-charging-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-charging-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-bold.imageset/battery-charging-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-charging-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-bold.imageset/battery-charging-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-charging.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-bold.imageset/battery-charging-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-charging.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-bold.imageset/battery-empty-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-bold.imageset/battery-empty-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-bold.imageset/battery-full-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-bold.imageset/battery-full-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-bold.imageset/battery-high-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-bold.imageset/battery-high-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-bold.imageset/battery-low-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-bold.imageset/battery-low-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-bold.imageset/battery-medium-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-bold.imageset/battery-medium-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-bold.imageset/battery-plus-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-plus-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-bold.imageset/battery-plus-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-plus-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-bold.imageset/battery-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-bold.imageset/battery-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-bold.imageset/battery-vertical-empty-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-vertical-empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-bold.imageset/battery-vertical-empty-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-vertical-empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-bold.imageset/battery-vertical-full-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-vertical-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-bold.imageset/battery-vertical-full-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-vertical-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-bold.imageset/battery-vertical-high-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-vertical-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-bold.imageset/battery-vertical-high-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-vertical-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-bold.imageset/battery-vertical-low-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-vertical-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-bold.imageset/battery-vertical-low-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-vertical-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-bold.imageset/battery-vertical-medium-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-vertical-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-bold.imageset/battery-vertical-medium-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-vertical-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-bold.imageset/battery-warning-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-warning-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-bold.imageset/battery-warning-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-warning-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-bold.imageset/battery-warning-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-bold.imageset/battery-warning-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/battery-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-bold.imageset/beach-ball-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/beach-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-bold.imageset/beach-ball-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/beach-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-bold.imageset/beanie-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/beanie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-bold.imageset/beanie-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/beanie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-bold.imageset/bed-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-bold.imageset/bed-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-bold.imageset/beer-bottle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/beer-bottle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-bold.imageset/beer-bottle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/beer-bottle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-bold.imageset/beer-stein-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/beer-stein.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-bold.imageset/beer-stein-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/beer-stein.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-bold.imageset/behance-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/behance-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-bold.imageset/behance-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/behance-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-bold.imageset/bell-ringing-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell-ringing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-bold.imageset/bell-ringing-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell-ringing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-bold.imageset/bell-simple-ringing-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell-simple-ringing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-bold.imageset/bell-simple-ringing-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell-simple-ringing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-bold.imageset/bell-simple-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-bold.imageset/bell-simple-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-bold.imageset/bell-simple-z-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell-simple-z.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-bold.imageset/bell-simple-z-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell-simple-z.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-bold.imageset/bell-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-bold.imageset/bell-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-bold.imageset/bell-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-bold.imageset/bell-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-bold.imageset/bell-z-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell-z.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-bold.imageset/bell-z-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell-z.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-bold.imageset/bell-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-bold.imageset/bell-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-bold.imageset/belt-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/belt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-bold.imageset/belt-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/belt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-bold.imageset/bezier-curve-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bezier-curve.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-bold.imageset/bezier-curve-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bezier-curve.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-bold.imageset/bicycle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bicycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-bold.imageset/bicycle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bicycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-bold.imageset/binary-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/binary.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-bold.imageset/binary-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/binary.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-bold.imageset/binoculars-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/binoculars.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-bold.imageset/binoculars-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/binoculars.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-bold.imageset/biohazard-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/biohazard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-bold.imageset/biohazard-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/biohazard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-bold.imageset/bird-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bird.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-bold.imageset/bird-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bird.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-bold.imageset/blueprint-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/blueprint.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-bold.imageset/blueprint-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/blueprint.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-bold.imageset/bluetooth-connected-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bluetooth-connected.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-bold.imageset/bluetooth-connected-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bluetooth-connected.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-bold.imageset/bluetooth-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bluetooth-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-bold.imageset/bluetooth-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bluetooth-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-bold.imageset/bluetooth-x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bluetooth-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-bold.imageset/bluetooth-x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bluetooth-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-bold.imageset/bluetooth-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bluetooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-bold.imageset/bluetooth-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bluetooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-bold.imageset/boat-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/boat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-bold.imageset/boat-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/boat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-bold.imageset/bomb-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bomb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-bold.imageset/bomb-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bomb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-bold.imageset/bone-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-bold.imageset/bone-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-bold.imageset/book-bookmark-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/book-bookmark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-bold.imageset/book-bookmark-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/book-bookmark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-bold.imageset/book-open-text-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/book-open-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-bold.imageset/book-open-text-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/book-open-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-bold.imageset/book-open-user-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/book-open-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-bold.imageset/book-open-user-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/book-open-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-bold.imageset/book-open-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/book-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-bold.imageset/book-open-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/book-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bold.imageset/book-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/book.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bold.imageset/book-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/book.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-bold.imageset/bookmark-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bookmark-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-bold.imageset/bookmark-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bookmark-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-bold.imageset/bookmark-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bookmark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-bold.imageset/bookmark-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bookmark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-bold.imageset/bookmarks-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bookmarks-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-bold.imageset/bookmarks-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bookmarks-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-bold.imageset/bookmarks-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bookmarks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-bold.imageset/bookmarks-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bookmarks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-bold.imageset/books-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/books.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-bold.imageset/books-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/books.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-bold.imageset/boot-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/boot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-bold.imageset/boot-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/boot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-bold.imageset/boules-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/boules.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-bold.imageset/boules-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/boules.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-bold.imageset/bounding-box-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bounding-box.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-bold.imageset/bounding-box-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bounding-box.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-bold.imageset/bowl-food-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bowl-food.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-bold.imageset/bowl-food-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bowl-food.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-bold.imageset/bowl-steam-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bowl-steam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-bold.imageset/bowl-steam-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bowl-steam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-bold.imageset/bowling-ball-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bowling-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-bold.imageset/bowling-ball-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bowling-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-bold.imageset/archive-box-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/box-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-bold.imageset/archive-box-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/box-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-bold.imageset/box-arrow-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/box-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-bold.imageset/box-arrow-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/box-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-bold.imageset/boxing-glove-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/boxing-glove.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-bold.imageset/boxing-glove-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/boxing-glove.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-bold.imageset/brackets-angle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/brackets-angle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-bold.imageset/brackets-angle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/brackets-angle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-bold.imageset/brackets-curly-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/brackets-curly.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-bold.imageset/brackets-curly-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/brackets-curly.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-bold.imageset/brackets-round-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/brackets-round.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-bold.imageset/brackets-round-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/brackets-round.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-bold.imageset/brackets-square-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/brackets-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-bold.imageset/brackets-square-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/brackets-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-bold.imageset/brain-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/brain.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-bold.imageset/brain-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/brain.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-bold.imageset/brandy-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/brandy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-bold.imageset/brandy-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/brandy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-bold.imageset/bread-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bread.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-bold.imageset/bread-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bread.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-bold.imageset/bridge-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bridge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-bold.imageset/bridge-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bridge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-bold.imageset/briefcase-metal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/briefcase-metal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-bold.imageset/briefcase-metal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/briefcase-metal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-bold.imageset/briefcase-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/briefcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-bold.imageset/briefcase-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/briefcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-bold.imageset/broadcast-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/broadcast.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-bold.imageset/broadcast-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/broadcast.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-bold.imageset/broom-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/broom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-bold.imageset/broom-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/broom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-bold.imageset/browser-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/browser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-bold.imageset/browser-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/browser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-bold.imageset/browsers-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/browsers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-bold.imageset/browsers-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/browsers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-bold.imageset/bug-beetle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bug-beetle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-bold.imageset/bug-beetle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bug-beetle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-bold.imageset/bug-droid-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bug-droid.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-bold.imageset/bug-droid-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bug-droid.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-bold.imageset/bug-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-bold.imageset/bug-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-bold.imageset/building-apartment-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/building-apartment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-bold.imageset/building-apartment-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/building-apartment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-bold.imageset/building-office-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/building-office.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-bold.imageset/building-office-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/building-office.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-bold.imageset/building-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/building.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-bold.imageset/building-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/building.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-bold.imageset/buildings-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/buildings.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-bold.imageset/buildings-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/buildings.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-bold.imageset/bulldozer-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bulldozer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-bold.imageset/bulldozer-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bulldozer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-bold.imageset/bus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/bus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-bold.imageset/bus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/bus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-bold.imageset/butterfly-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/butterfly.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-bold.imageset/butterfly-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/butterfly.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-bold.imageset/cable-car-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cable-car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-bold.imageset/cable-car-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cable-car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-bold.imageset/cactus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cactus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-bold.imageset/cactus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cactus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-bold.imageset/cake-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-bold.imageset/cake-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-bold.imageset/calculator-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/calculator.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-bold.imageset/calculator-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/calculator.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-bold.imageset/calendar-blank-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-bold.imageset/calendar-blank-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-bold.imageset/calendar-check-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-bold.imageset/calendar-check-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-bold.imageset/calendar-dot-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-dot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-bold.imageset/calendar-dot-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-dot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-bold.imageset/calendar-dots-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-bold.imageset/calendar-dots-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-bold.imageset/calendar-heart-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-bold.imageset/calendar-heart-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-bold.imageset/calendar-minus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-bold.imageset/calendar-minus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-bold.imageset/calendar-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-bold.imageset/calendar-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-bold.imageset/calendar-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-bold.imageset/calendar-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-bold.imageset/calendar-star-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-bold.imageset/calendar-star-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-bold.imageset/calendar-x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-bold.imageset/calendar-x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-bold.imageset/calendar-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-bold.imageset/calendar-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/calendar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-bold.imageset/call-bell-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/call-bell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-bold.imageset/call-bell-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/call-bell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-bold.imageset/camera-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/camera-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-bold.imageset/camera-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/camera-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-bold.imageset/camera-rotate-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/camera-rotate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-bold.imageset/camera-rotate-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/camera-rotate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-bold.imageset/camera-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/camera-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-bold.imageset/camera-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/camera-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-bold.imageset/camera-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-bold.imageset/camera-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-bold.imageset/campfire-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/campfire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-bold.imageset/campfire-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/campfire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-bold.imageset/car-battery-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/car-battery.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-bold.imageset/car-battery-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/car-battery.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-bold.imageset/car-profile-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/car-profile.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-bold.imageset/car-profile-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/car-profile.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-bold.imageset/car-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/car-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-bold.imageset/car-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/car-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-bold.imageset/car-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-bold.imageset/car-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-bold.imageset/cardholder-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cardholder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-bold.imageset/cardholder-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cardholder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-bold.imageset/cards-three-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cards-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-bold.imageset/cards-three-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cards-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-bold.imageset/cards-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cards.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-bold.imageset/cards-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cards.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-bold.imageset/caret-circle-double-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-double-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-bold.imageset/caret-circle-double-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-double-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-bold.imageset/caret-circle-double-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-double-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-bold.imageset/caret-circle-double-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-double-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-bold.imageset/caret-circle-double-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-double-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-bold.imageset/caret-circle-double-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-double-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-bold.imageset/caret-circle-double-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-double-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-bold.imageset/caret-circle-double-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-double-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-bold.imageset/caret-circle-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-bold.imageset/caret-circle-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-bold.imageset/caret-circle-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-bold.imageset/caret-circle-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-bold.imageset/caret-circle-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-bold.imageset/caret-circle-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-bold.imageset/caret-circle-up-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-up-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-bold.imageset/caret-circle-up-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-up-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-bold.imageset/caret-circle-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-bold.imageset/caret-circle-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-circle-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-bold.imageset/caret-double-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-double-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-bold.imageset/caret-double-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-double-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-bold.imageset/caret-double-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-double-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-bold.imageset/caret-double-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-double-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-bold.imageset/caret-double-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-double-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-bold.imageset/caret-double-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-double-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-bold.imageset/caret-double-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-double-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-bold.imageset/caret-double-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-double-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-bold.imageset/caret-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-bold.imageset/caret-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-bold.imageset/caret-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-bold.imageset/caret-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-bold.imageset/caret-line-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-bold.imageset/caret-line-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-bold.imageset/caret-line-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-bold.imageset/caret-line-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-bold.imageset/caret-line-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-bold.imageset/caret-line-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-bold.imageset/caret-line-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-bold.imageset/caret-line-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-bold.imageset/caret-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-bold.imageset/caret-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-bold.imageset/caret-up-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-up-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-bold.imageset/caret-up-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-up-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-bold.imageset/caret-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-bold.imageset/caret-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/caret-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-bold.imageset/carrot-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/carrot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-bold.imageset/carrot-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/carrot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-bold.imageset/cash-register-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cash-register.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-bold.imageset/cash-register-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cash-register.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-bold.imageset/cassette-tape-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cassette-tape.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-bold.imageset/cassette-tape-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cassette-tape.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-bold.imageset/castle-turret-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/castle-turret.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-bold.imageset/castle-turret-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/castle-turret.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-bold.imageset/cat-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-bold.imageset/cat-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-bold.imageset/cell-signal-full-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-signal-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-bold.imageset/cell-signal-full-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-signal-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-bold.imageset/cell-signal-high-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-signal-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-bold.imageset/cell-signal-high-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-signal-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-bold.imageset/cell-signal-low-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-signal-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-bold.imageset/cell-signal-low-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-signal-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-bold.imageset/cell-signal-medium-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-signal-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-bold.imageset/cell-signal-medium-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-signal-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-bold.imageset/cell-signal-none-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-signal-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-bold.imageset/cell-signal-none-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-signal-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-bold.imageset/cell-signal-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-signal-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-bold.imageset/cell-signal-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-signal-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-bold.imageset/cell-signal-x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-signal-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-bold.imageset/cell-signal-x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-signal-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-bold.imageset/cell-tower-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-bold.imageset/cell-tower-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cell-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-bold.imageset/certificate-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/certificate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-bold.imageset/certificate-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/certificate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-bold.imageset/chair-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-bold.imageset/chair-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-bold.imageset/chalkboard-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chalkboard-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-bold.imageset/chalkboard-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chalkboard-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-bold.imageset/chalkboard-teacher-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chalkboard-teacher.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-bold.imageset/chalkboard-teacher-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chalkboard-teacher.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-bold.imageset/chalkboard-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chalkboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-bold.imageset/chalkboard-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chalkboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-bold.imageset/champagne-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/champagne.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-bold.imageset/champagne-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/champagne.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-bold.imageset/charging-station-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/charging-station.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-bold.imageset/charging-station-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/charging-station.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-bold.imageset/chart-bar-horizontal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-bar-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-bold.imageset/chart-bar-horizontal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-bar-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-bold.imageset/chart-bar-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-bar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-bold.imageset/chart-bar-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-bar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-bold.imageset/chart-donut-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-donut.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-bold.imageset/chart-donut-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-donut.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-bold.imageset/chart-line-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-bold.imageset/chart-line-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-bold.imageset/chart-line-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-bold.imageset/chart-line-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-bold.imageset/chart-line-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-bold.imageset/chart-line-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-bold.imageset/chart-pie-slice-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-pie-slice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-bold.imageset/chart-pie-slice-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-pie-slice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-bold.imageset/chart-pie-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-pie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-bold.imageset/chart-pie-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-pie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-bold.imageset/chart-polar-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-polar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-bold.imageset/chart-polar-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-polar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-bold.imageset/chart-scatter-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-scatter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-bold.imageset/chart-scatter-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chart-scatter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-bold.imageset/chat-centered-dots-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-centered-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-bold.imageset/chat-centered-dots-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-centered-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-bold.imageset/chat-centered-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-centered-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-bold.imageset/chat-centered-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-centered-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-bold.imageset/chat-centered-text-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-centered-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-bold.imageset/chat-centered-text-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-centered-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-bold.imageset/chat-centered-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-centered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-bold.imageset/chat-centered-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-centered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-bold.imageset/chat-circle-dots-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-circle-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-bold.imageset/chat-circle-dots-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-circle-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-bold.imageset/chat-circle-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-circle-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-bold.imageset/chat-circle-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-circle-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-bold.imageset/chat-circle-text-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-circle-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-bold.imageset/chat-circle-text-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-circle-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-bold.imageset/chat-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-bold.imageset/chat-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-bold.imageset/chat-dots-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-bold.imageset/chat-dots-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-bold.imageset/chat-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-bold.imageset/chat-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-bold.imageset/chat-teardrop-dots-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-teardrop-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-bold.imageset/chat-teardrop-dots-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-teardrop-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-bold.imageset/chat-teardrop-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-teardrop-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-bold.imageset/chat-teardrop-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-teardrop-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-bold.imageset/chat-teardrop-text-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-teardrop-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-bold.imageset/chat-teardrop-text-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-teardrop-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-bold.imageset/chat-teardrop-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-teardrop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-bold.imageset/chat-teardrop-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-teardrop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-bold.imageset/chat-text-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-bold.imageset/chat-text-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-bold.imageset/chat-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-bold.imageset/chat-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-bold.imageset/chats-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chats-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-bold.imageset/chats-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chats-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-bold.imageset/chats-teardrop-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chats-teardrop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-bold.imageset/chats-teardrop-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chats-teardrop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-bold.imageset/chats-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chats.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-bold.imageset/chats-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chats.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-bold.imageset/check-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/check-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-bold.imageset/check-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/check-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-bold.imageset/check-fat-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/check-fat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-bold.imageset/check-fat-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/check-fat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-bold.imageset/check-square-offset-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/check-square-offset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-bold.imageset/check-square-offset-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/check-square-offset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-bold.imageset/check-square-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/check-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-bold.imageset/check-square-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/check-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-bold.imageset/check-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-bold.imageset/check-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-bold.imageset/checkerboard-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/checkerboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-bold.imageset/checkerboard-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/checkerboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-bold.imageset/checks-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/checks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-bold.imageset/checks-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/checks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-bold.imageset/cheers-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cheers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-bold.imageset/cheers-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cheers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-bold.imageset/cheese-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cheese.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-bold.imageset/cheese-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cheese.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-bold.imageset/chef-hat-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/chef-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-bold.imageset/chef-hat-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/chef-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-bold.imageset/cherries-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cherries.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-bold.imageset/cherries-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cherries.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-bold.imageset/church-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/church.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-bold.imageset/church-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/church.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-bold.imageset/cigarette-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cigarette-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-bold.imageset/cigarette-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cigarette-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-bold.imageset/cigarette-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cigarette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-bold.imageset/cigarette-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cigarette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-bold.imageset/circle-dashed-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/circle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-bold.imageset/circle-dashed-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/circle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-bold.imageset/circle-half-tilt-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/circle-half-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-bold.imageset/circle-half-tilt-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/circle-half-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-bold.imageset/circle-half-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/circle-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-bold.imageset/circle-half-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/circle-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-bold.imageset/circle-notch-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/circle-notch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-bold.imageset/circle-notch-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/circle-notch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-bold.imageset/circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-bold.imageset/circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-bold.imageset/circles-four-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/circles-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-bold.imageset/circles-four-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/circles-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-bold.imageset/circles-three-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/circles-three-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-bold.imageset/circles-three-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/circles-three-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-bold.imageset/circles-three-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/circles-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-bold.imageset/circles-three-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/circles-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-bold.imageset/circuitry-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/circuitry.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-bold.imageset/circuitry-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/circuitry.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-bold.imageset/city-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/city.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-bold.imageset/city-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/city.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-bold.imageset/clipboard-text-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/clipboard-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-bold.imageset/clipboard-text-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/clipboard-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-bold.imageset/clipboard-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/clipboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-bold.imageset/clipboard-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/clipboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-bold.imageset/clock-afternoon-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/clock-afternoon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-bold.imageset/clock-afternoon-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/clock-afternoon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-bold.imageset/clock-clockwise-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/clock-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-bold.imageset/clock-clockwise-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/clock-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-bold.imageset/clock-countdown-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/clock-countdown.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-bold.imageset/clock-countdown-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/clock-countdown.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-bold.imageset/clock-counter-clockwise-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/clock-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-bold.imageset/clock-counter-clockwise-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/clock-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-bold.imageset/clock-user-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/clock-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-bold.imageset/clock-user-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/clock-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-bold.imageset/clock-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/clock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-bold.imageset/clock-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/clock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-bold.imageset/closed-captioning-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/closed-captioning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-bold.imageset/closed-captioning-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/closed-captioning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-bold.imageset/cloud-arrow-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-bold.imageset/cloud-arrow-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-bold.imageset/cloud-arrow-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-bold.imageset/cloud-arrow-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-bold.imageset/cloud-check-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-bold.imageset/cloud-check-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-bold.imageset/cloud-fog-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-fog.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-bold.imageset/cloud-fog-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-fog.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-bold.imageset/cloud-lightning-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-lightning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-bold.imageset/cloud-lightning-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-lightning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-bold.imageset/cloud-moon-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-moon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-bold.imageset/cloud-moon-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-moon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-bold.imageset/cloud-rain-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-rain.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-bold.imageset/cloud-rain-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-rain.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-bold.imageset/cloud-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-bold.imageset/cloud-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-bold.imageset/cloud-snow-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-snow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-bold.imageset/cloud-snow-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-snow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-bold.imageset/cloud-sun-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-sun.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-bold.imageset/cloud-sun-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-sun.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-bold.imageset/cloud-warning-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-bold.imageset/cloud-warning-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-bold.imageset/cloud-x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-bold.imageset/cloud-x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-bold.imageset/cloud-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-bold.imageset/cloud-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-bold.imageset/clover-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/clover.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-bold.imageset/clover-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/clover.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-bold.imageset/club-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/club.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-bold.imageset/club-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/club.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-bold.imageset/coat-hanger-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/coat-hanger.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-bold.imageset/coat-hanger-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/coat-hanger.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-bold.imageset/coda-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/coda-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-bold.imageset/coda-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/coda-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-bold.imageset/code-block-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/code-block.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-bold.imageset/code-block-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/code-block.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-bold.imageset/code-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/code-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-bold.imageset/code-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/code-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-bold.imageset/code-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-bold.imageset/code-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-bold.imageset/codepen-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/codepen-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-bold.imageset/codepen-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/codepen-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-bold.imageset/codesandbox-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/codesandbox-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-bold.imageset/codesandbox-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/codesandbox-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-bold.imageset/coffee-bean-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/coffee-bean.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-bold.imageset/coffee-bean-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/coffee-bean.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bold.imageset/coffee-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/coffee.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bold.imageset/coffee-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/coffee.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-bold.imageset/coin-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/coin-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-bold.imageset/coin-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/coin-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-bold.imageset/coin-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/coin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-bold.imageset/coin-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/coin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-bold.imageset/coins-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/coins.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-bold.imageset/coins-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/coins.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-bold.imageset/columns-plus-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/columns-plus-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-bold.imageset/columns-plus-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/columns-plus-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-bold.imageset/columns-plus-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/columns-plus-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-bold.imageset/columns-plus-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/columns-plus-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-bold.imageset/columns-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/columns.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-bold.imageset/columns-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/columns.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-bold.imageset/command-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/command.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-bold.imageset/command-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/command.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-bold.imageset/compass-rose-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/compass-rose.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-bold.imageset/compass-rose-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/compass-rose.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-bold.imageset/compass-tool-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/compass-tool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-bold.imageset/compass-tool-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/compass-tool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-bold.imageset/compass-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/compass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-bold.imageset/compass-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/compass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-bold.imageset/computer-tower-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/computer-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-bold.imageset/computer-tower-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/computer-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-bold.imageset/confetti-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/confetti.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-bold.imageset/confetti-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/confetti.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-bold.imageset/contactless-payment-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/contactless-payment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-bold.imageset/contactless-payment-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/contactless-payment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-bold.imageset/control-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/control.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-bold.imageset/control-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/control.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-bold.imageset/cookie-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cookie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-bold.imageset/cookie-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cookie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-bold.imageset/cooking-pot-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cooking-pot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-bold.imageset/cooking-pot-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cooking-pot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-bold.imageset/copy-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/copy-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-bold.imageset/copy-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/copy-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-bold.imageset/copy-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/copy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-bold.imageset/copy-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/copy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-bold.imageset/copyleft-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/copyleft.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-bold.imageset/copyleft-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/copyleft.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-bold.imageset/copyright-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/copyright.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-bold.imageset/copyright-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/copyright.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-bold.imageset/corners-in-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/corners-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-bold.imageset/corners-in-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/corners-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-bold.imageset/corners-out-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/corners-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-bold.imageset/corners-out-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/corners-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-bold.imageset/couch-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/couch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-bold.imageset/couch-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/couch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-bold.imageset/court-basketball-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/court-basketball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-bold.imageset/court-basketball-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/court-basketball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-bold.imageset/cow-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-bold.imageset/cow-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-bold.imageset/cowboy-hat-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cowboy-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-bold.imageset/cowboy-hat-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cowboy-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-bold.imageset/cpu-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cpu.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-bold.imageset/cpu-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cpu.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-bold.imageset/crane-tower-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/crane-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-bold.imageset/crane-tower-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/crane-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-bold.imageset/crane-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/crane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-bold.imageset/crane-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/crane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-bold.imageset/credit-card-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/credit-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-bold.imageset/credit-card-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/credit-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-bold.imageset/cricket-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cricket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-bold.imageset/cricket-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cricket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-bold.imageset/crop-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/crop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-bold.imageset/crop-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/crop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-bold.imageset/cross-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cross.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-bold.imageset/cross-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cross.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-bold.imageset/crosshair-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/crosshair-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-bold.imageset/crosshair-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/crosshair-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-bold.imageset/crosshair-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/crosshair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-bold.imageset/crosshair-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/crosshair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-bold.imageset/crown-cross-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/crown-cross.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-bold.imageset/crown-cross-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/crown-cross.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-bold.imageset/crown-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/crown-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-bold.imageset/crown-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/crown-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-bold.imageset/crown-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/crown.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-bold.imageset/crown-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/crown.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-bold.imageset/cube-focus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cube-focus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-bold.imageset/cube-focus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cube-focus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-bold.imageset/cube-transparent-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cube-transparent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-bold.imageset/cube-transparent-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cube-transparent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-bold.imageset/cube-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cube.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-bold.imageset/cube-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cube.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-bold.imageset/currency-btc-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-btc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-bold.imageset/currency-btc-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-btc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-bold.imageset/currency-circle-dollar-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-circle-dollar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-bold.imageset/currency-circle-dollar-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-circle-dollar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-bold.imageset/currency-cny-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-cny.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-bold.imageset/currency-cny-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-cny.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-bold.imageset/currency-dollar-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-dollar-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-bold.imageset/currency-dollar-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-dollar-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-bold.imageset/currency-dollar-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-dollar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-bold.imageset/currency-dollar-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-dollar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-bold.imageset/currency-eth-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-eth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-bold.imageset/currency-eth-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-eth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-bold.imageset/currency-eur-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-eur.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-bold.imageset/currency-eur-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-eur.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-bold.imageset/currency-gbp-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-gbp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-bold.imageset/currency-gbp-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-gbp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-bold.imageset/currency-inr-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-inr.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-bold.imageset/currency-inr-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-inr.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-bold.imageset/currency-jpy-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-jpy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-bold.imageset/currency-jpy-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-jpy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-bold.imageset/currency-krw-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-krw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-bold.imageset/currency-krw-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-krw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-bold.imageset/currency-kzt-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-kzt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-bold.imageset/currency-kzt-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-kzt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-bold.imageset/currency-ngn-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-ngn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-bold.imageset/currency-ngn-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-ngn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-bold.imageset/currency-rub-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-rub.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-bold.imageset/currency-rub-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/currency-rub.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-bold.imageset/cursor-click-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cursor-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-bold.imageset/cursor-click-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cursor-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-bold.imageset/cursor-text-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cursor-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-bold.imageset/cursor-text-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cursor-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-bold.imageset/cursor-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cursor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-bold.imageset/cursor-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cursor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-bold.imageset/cylinder-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/cylinder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-bold.imageset/cylinder-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/cylinder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-bold.imageset/database-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/database.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-bold.imageset/database-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/database.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-bold.imageset/desk-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/desk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-bold.imageset/desk-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/desk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-bold.imageset/desktop-tower-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/desktop-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-bold.imageset/desktop-tower-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/desktop-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-bold.imageset/desktop-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/desktop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-bold.imageset/desktop-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/desktop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-bold.imageset/detective-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/detective.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-bold.imageset/detective-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/detective.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-bold.imageset/dev-to-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dev-to-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-bold.imageset/dev-to-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dev-to-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-bold.imageset/device-mobile-camera-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-mobile-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-bold.imageset/device-mobile-camera-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-mobile-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-bold.imageset/device-mobile-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-mobile-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-bold.imageset/device-mobile-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-mobile-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-bold.imageset/device-mobile-speaker-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-mobile-speaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-bold.imageset/device-mobile-speaker-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-mobile-speaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-bold.imageset/device-mobile-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-mobile.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-bold.imageset/device-mobile-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-mobile.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-bold.imageset/device-rotate-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-rotate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-bold.imageset/device-rotate-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-rotate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-bold.imageset/device-tablet-camera-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-tablet-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-bold.imageset/device-tablet-camera-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-tablet-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-bold.imageset/device-tablet-speaker-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-tablet-speaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-bold.imageset/device-tablet-speaker-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-tablet-speaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-bold.imageset/device-tablet-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-tablet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-bold.imageset/device-tablet-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/device-tablet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-bold.imageset/devices-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/devices.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-bold.imageset/devices-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/devices.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-bold.imageset/diamond-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/diamond.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-bold.imageset/diamond-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/diamond.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-bold.imageset/diamonds-four-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/diamonds-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-bold.imageset/diamonds-four-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/diamonds-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-bold.imageset/dice-five-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dice-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-bold.imageset/dice-five-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dice-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-bold.imageset/dice-four-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dice-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-bold.imageset/dice-four-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dice-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-bold.imageset/dice-one-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dice-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-bold.imageset/dice-one-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dice-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-bold.imageset/dice-six-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dice-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-bold.imageset/dice-six-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dice-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-bold.imageset/dice-three-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dice-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-bold.imageset/dice-three-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dice-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-bold.imageset/dice-two-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dice-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-bold.imageset/dice-two-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dice-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-bold.imageset/disc-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/disc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-bold.imageset/disc-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/disc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-bold.imageset/disco-ball-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/disco-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-bold.imageset/disco-ball-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/disco-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-bold.imageset/discord-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/discord-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-bold.imageset/discord-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/discord-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-bold.imageset/divide-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/divide.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-bold.imageset/divide-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/divide.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-bold.imageset/dna-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dna.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-bold.imageset/dna-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dna.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-bold.imageset/dog-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dog.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-bold.imageset/dog-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dog.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-bold.imageset/door-open-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/door-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-bold.imageset/door-open-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/door-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-bold.imageset/door-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/door.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-bold.imageset/door-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/door.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-bold.imageset/dot-outline-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dot-outline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-bold.imageset/dot-outline-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dot-outline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-bold.imageset/dot-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-bold.imageset/dot-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-bold.imageset/dots-nine-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-bold.imageset/dots-nine-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-bold.imageset/dots-six-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-six-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-bold.imageset/dots-six-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-six-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-bold.imageset/dots-six-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-bold.imageset/dots-six-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-bold.imageset/dots-three-circle-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-three-circle-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-bold.imageset/dots-three-circle-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-three-circle-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-bold.imageset/dots-three-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-three-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-bold.imageset/dots-three-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-three-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-bold.imageset/dots-three-outline-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-three-outline-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-bold.imageset/dots-three-outline-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-three-outline-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-bold.imageset/dots-three-outline-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-three-outline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-bold.imageset/dots-three-outline-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-three-outline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-bold.imageset/dots-three-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-three-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-bold.imageset/dots-three-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-three-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-bold.imageset/dots-three-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-bold.imageset/dots-three-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dots-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-bold.imageset/download-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/download-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-bold.imageset/download-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/download-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-bold.imageset/download-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/download.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-bold.imageset/download-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/download.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-bold.imageset/dress-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dress.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-bold.imageset/dress-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dress.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-bold.imageset/dresser-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dresser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-bold.imageset/dresser-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dresser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-bold.imageset/dribbble-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dribbble-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-bold.imageset/dribbble-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dribbble-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-bold.imageset/drone-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/drone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-bold.imageset/drone-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/drone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-bold.imageset/drop-half-bottom-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/drop-half-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-bold.imageset/drop-half-bottom-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/drop-half-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bold.imageset/drop-half-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/drop-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bold.imageset/drop-half-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/drop-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-bold.imageset/drop-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/drop-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-bold.imageset/drop-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/drop-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-bold.imageset/drop-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/drop-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-bold.imageset/drop-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/drop-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-bold.imageset/drop-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/drop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-bold.imageset/drop-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/drop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-bold.imageset/dropbox-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/dropbox-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-bold.imageset/dropbox-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/dropbox-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-bold.imageset/ear-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/ear-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-bold.imageset/ear-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/ear-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-bold.imageset/ear-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/ear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-bold.imageset/ear-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/ear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-bold.imageset/egg-crack-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/egg-crack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-bold.imageset/egg-crack-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/egg-crack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-bold.imageset/egg-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/egg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-bold.imageset/egg-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/egg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-bold.imageset/eject-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/eject-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-bold.imageset/eject-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/eject-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-bold.imageset/eject-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/eject.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-bold.imageset/eject-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/eject.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-bold.imageset/elevator-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/elevator.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-bold.imageset/elevator-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/elevator.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-bold.imageset/empty-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-bold.imageset/empty-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-bold.imageset/engine-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/engine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-bold.imageset/engine-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/engine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-bold.imageset/envelope-open-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/envelope-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-bold.imageset/envelope-open-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/envelope-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-bold.imageset/envelope-simple-open-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/envelope-simple-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-bold.imageset/envelope-simple-open-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/envelope-simple-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-bold.imageset/envelope-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/envelope-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-bold.imageset/envelope-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/envelope-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-bold.imageset/envelope-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/envelope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-bold.imageset/envelope-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/envelope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-bold.imageset/equalizer-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/equalizer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-bold.imageset/equalizer-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/equalizer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-bold.imageset/equals-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-bold.imageset/equals-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-bold.imageset/eraser-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/eraser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-bold.imageset/eraser-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/eraser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-bold.imageset/escalator-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/escalator-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-bold.imageset/escalator-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/escalator-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-bold.imageset/escalator-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/escalator-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-bold.imageset/escalator-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/escalator-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-bold.imageset/exam-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/exam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-bold.imageset/exam-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/exam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-bold.imageset/exclamation-mark-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/exclamation-mark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-bold.imageset/exclamation-mark-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/exclamation-mark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-bold.imageset/exclude-square-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/exclude-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-bold.imageset/exclude-square-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/exclude-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-bold.imageset/exclude-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/exclude.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-bold.imageset/exclude-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/exclude.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-bold.imageset/export-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/export.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-bold.imageset/export-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/export.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-bold.imageset/eye-closed-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/eye-closed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-bold.imageset/eye-closed-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/eye-closed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-bold.imageset/eye-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/eye-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-bold.imageset/eye-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/eye-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-bold.imageset/eye-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/eye.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-bold.imageset/eye-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/eye.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-bold.imageset/eyedropper-sample-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/eyedropper-sample.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-bold.imageset/eyedropper-sample-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/eyedropper-sample.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-bold.imageset/eyedropper-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/eyedropper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-bold.imageset/eyedropper-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/eyedropper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-bold.imageset/eyeglasses-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/eyeglasses.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-bold.imageset/eyeglasses-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/eyeglasses.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-bold.imageset/eyes-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/eyes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-bold.imageset/eyes-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/eyes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-bold.imageset/face-mask-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/face-mask.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-bold.imageset/face-mask-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/face-mask.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-bold.imageset/facebook-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/facebook-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-bold.imageset/facebook-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/facebook-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-bold.imageset/factory-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/factory.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-bold.imageset/factory-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/factory.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-bold.imageset/faders-horizontal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/faders-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-bold.imageset/faders-horizontal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/faders-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-bold.imageset/faders-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/faders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-bold.imageset/faders-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/faders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-bold.imageset/fallout-shelter-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/fallout-shelter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-bold.imageset/fallout-shelter-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/fallout-shelter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-bold.imageset/fan-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/fan.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-bold.imageset/fan-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/fan.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-bold.imageset/farm-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/farm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-bold.imageset/farm-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/farm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-bold.imageset/fast-forward-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/fast-forward-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-bold.imageset/fast-forward-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/fast-forward-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-bold.imageset/fast-forward-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/fast-forward.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-bold.imageset/fast-forward-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/fast-forward.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-bold.imageset/feather-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/feather.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-bold.imageset/feather-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/feather.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-bold.imageset/fediverse-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/fediverse-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-bold.imageset/fediverse-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/fediverse-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-bold.imageset/figma-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/figma-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-bold.imageset/figma-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/figma-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-bold.imageset/file-archive-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-archive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-bold.imageset/file-archive-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-archive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-bold.imageset/file-arrow-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-bold.imageset/file-arrow-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-bold.imageset/file-arrow-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-bold.imageset/file-arrow-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-bold.imageset/file-audio-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-audio.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-bold.imageset/file-audio-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-audio.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-bold.imageset/file-c-sharp-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-c-sharp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-bold.imageset/file-c-sharp-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-c-sharp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-bold.imageset/file-c-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-c.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-bold.imageset/file-c-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-c.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-bold.imageset/file-cloud-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-bold.imageset/file-cloud-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-bold.imageset/file-code-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-bold.imageset/file-code-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-bold.imageset/file-cpp-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-cpp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-bold.imageset/file-cpp-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-cpp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-bold.imageset/file-css-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-css.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-bold.imageset/file-css-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-css.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-bold.imageset/file-csv-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-csv.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-bold.imageset/file-csv-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-csv.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-bold.imageset/file-dashed-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-bold.imageset/file-dashed-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-bold.imageset/file-doc-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-doc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-bold.imageset/file-doc-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-doc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-bold.imageset/file-html-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-html.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-bold.imageset/file-html-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-html.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-bold.imageset/file-image-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-image.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-bold.imageset/file-image-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-image.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-bold.imageset/file-ini-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-ini.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-bold.imageset/file-ini-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-ini.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-bold.imageset/file-jpg-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-jpg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-bold.imageset/file-jpg-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-jpg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-bold.imageset/file-js-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-js.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-bold.imageset/file-js-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-js.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-bold.imageset/file-jsx-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-jsx.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-bold.imageset/file-jsx-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-jsx.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-bold.imageset/file-lock-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-bold.imageset/file-lock-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-bold.imageset/file-magnifying-glass-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-bold.imageset/file-magnifying-glass-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-bold.imageset/file-md-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-md.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-bold.imageset/file-md-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-md.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-bold.imageset/file-minus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-bold.imageset/file-minus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-bold.imageset/file-pdf-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-pdf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-bold.imageset/file-pdf-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-pdf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-bold.imageset/file-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-bold.imageset/file-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-bold.imageset/file-png-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-png.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-bold.imageset/file-png-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-png.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-bold.imageset/file-ppt-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-ppt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-bold.imageset/file-ppt-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-ppt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-bold.imageset/file-py-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-py.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-bold.imageset/file-py-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-py.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-bold.imageset/file-rs-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-rs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-bold.imageset/file-rs-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-rs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-bold.imageset/file-sql-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-sql.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-bold.imageset/file-sql-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-sql.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-bold.imageset/file-svg-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-svg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-bold.imageset/file-svg-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-svg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-bold.imageset/file-text-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-bold.imageset/file-text-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-bold.imageset/file-ts-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-ts.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-bold.imageset/file-ts-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-ts.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-bold.imageset/file-tsx-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-tsx.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-bold.imageset/file-tsx-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-tsx.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-bold.imageset/file-txt-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-txt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-bold.imageset/file-txt-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-txt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-bold.imageset/file-video-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-video.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-bold.imageset/file-video-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-video.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-bold.imageset/file-vue-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-vue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-bold.imageset/file-vue-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-vue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-bold.imageset/file-x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-bold.imageset/file-x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-bold.imageset/file-xls-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-xls.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-bold.imageset/file-xls-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-xls.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-bold.imageset/file-zip-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-zip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-bold.imageset/file-zip-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file-zip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-bold.imageset/file-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/file.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-bold.imageset/file-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/file.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-bold.imageset/files-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/files.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-bold.imageset/files-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/files.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-bold.imageset/film-reel-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/film-reel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-bold.imageset/film-reel-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/film-reel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-bold.imageset/film-script-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/film-script.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-bold.imageset/film-script-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/film-script.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-bold.imageset/film-slate-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/film-slate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-bold.imageset/film-slate-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/film-slate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-bold.imageset/film-strip-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/film-strip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-bold.imageset/film-strip-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/film-strip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-bold.imageset/fingerprint-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/fingerprint-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-bold.imageset/fingerprint-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/fingerprint-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-bold.imageset/fingerprint-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/fingerprint.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-bold.imageset/fingerprint-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/fingerprint.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-bold.imageset/finn-the-human-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/finn-the-human.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-bold.imageset/finn-the-human-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/finn-the-human.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-bold.imageset/fire-extinguisher-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/fire-extinguisher.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-bold.imageset/fire-extinguisher-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/fire-extinguisher.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-bold.imageset/fire-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/fire-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-bold.imageset/fire-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/fire-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-bold.imageset/fire-truck-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/fire-truck.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-bold.imageset/fire-truck-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/fire-truck.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-bold.imageset/fire-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/fire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-bold.imageset/fire-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/fire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-bold.imageset/first-aid-kit-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/first-aid-kit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-bold.imageset/first-aid-kit-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/first-aid-kit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-bold.imageset/first-aid-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/first-aid.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-bold.imageset/first-aid-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/first-aid.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-bold.imageset/fish-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/fish-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-bold.imageset/fish-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/fish-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-bold.imageset/fish-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/fish.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-bold.imageset/fish-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/fish.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-bold.imageset/flag-banner-fold-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/flag-banner-fold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-bold.imageset/flag-banner-fold-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/flag-banner-fold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-bold.imageset/flag-banner-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/flag-banner.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-bold.imageset/flag-banner-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/flag-banner.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-bold.imageset/flag-checkered-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/flag-checkered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-bold.imageset/flag-checkered-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/flag-checkered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-bold.imageset/flag-pennant-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/flag-pennant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-bold.imageset/flag-pennant-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/flag-pennant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-bold.imageset/flag-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/flag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-bold.imageset/flag-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/flag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-bold.imageset/flame-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/flame.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-bold.imageset/flame-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/flame.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-bold.imageset/flashlight-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/flashlight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-bold.imageset/flashlight-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/flashlight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-bold.imageset/flask-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/flask.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-bold.imageset/flask-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/flask.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-bold.imageset/flip-horizontal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/flip-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-bold.imageset/flip-horizontal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/flip-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-bold.imageset/flip-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/flip-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-bold.imageset/flip-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/flip-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-bold.imageset/floppy-disk-back-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/floppy-disk-back.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-bold.imageset/floppy-disk-back-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/floppy-disk-back.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-bold.imageset/floppy-disk-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/floppy-disk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-bold.imageset/floppy-disk-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/floppy-disk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-bold.imageset/flow-arrow-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/flow-arrow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-bold.imageset/flow-arrow-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/flow-arrow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-bold.imageset/flower-lotus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/flower-lotus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-bold.imageset/flower-lotus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/flower-lotus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-bold.imageset/flower-tulip-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/flower-tulip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-bold.imageset/flower-tulip-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/flower-tulip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-bold.imageset/flower-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/flower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-bold.imageset/flower-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/flower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-bold.imageset/flying-saucer-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/flying-saucer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-bold.imageset/flying-saucer-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/flying-saucer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-bold.imageset/folder-dashed-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-bold.imageset/folder-dashed-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-bold.imageset/folder-lock-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-bold.imageset/folder-lock-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-bold.imageset/folder-minus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-bold.imageset/folder-minus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-bold.imageset/folder-open-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-bold.imageset/folder-open-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-bold.imageset/folder-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-bold.imageset/folder-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-bold.imageset/folder-simple-dashed-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-simple-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-bold.imageset/folder-simple-dashed-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-simple-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-bold.imageset/folder-simple-lock-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-simple-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-bold.imageset/folder-simple-lock-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-simple-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-bold.imageset/folder-simple-minus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-simple-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-bold.imageset/folder-simple-minus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-simple-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-bold.imageset/folder-simple-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-simple-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-bold.imageset/folder-simple-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-simple-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-bold.imageset/folder-simple-star-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-simple-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-bold.imageset/folder-simple-star-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-simple-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-bold.imageset/folder-simple-user-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-simple-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-bold.imageset/folder-simple-user-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-simple-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-bold.imageset/folder-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-bold.imageset/folder-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-bold.imageset/folder-star-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-bold.imageset/folder-star-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-bold.imageset/folder-user-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-bold.imageset/folder-user-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-bold.imageset/folder-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-bold.imageset/folder-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-bold.imageset/folders-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/folders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-bold.imageset/folders-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/folders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-bold.imageset/football-helmet-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/football-helmet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-bold.imageset/football-helmet-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/football-helmet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-bold.imageset/football-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/football.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-bold.imageset/football-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/football.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-bold.imageset/footprints-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/footprints.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-bold.imageset/footprints-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/footprints.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-bold.imageset/fork-knife-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/fork-knife.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-bold.imageset/fork-knife-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/fork-knife.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-bold.imageset/four-k-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/four-k.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-bold.imageset/four-k-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/four-k.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-bold.imageset/frame-corners-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/frame-corners.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-bold.imageset/frame-corners-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/frame-corners.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-bold.imageset/framer-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/framer-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-bold.imageset/framer-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/framer-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-bold.imageset/function-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/function.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-bold.imageset/function-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/function.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-bold.imageset/funnel-simple-x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/funnel-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-bold.imageset/funnel-simple-x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/funnel-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-bold.imageset/funnel-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/funnel-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-bold.imageset/funnel-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/funnel-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-bold.imageset/funnel-x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/funnel-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-bold.imageset/funnel-x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/funnel-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-bold.imageset/funnel-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/funnel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-bold.imageset/funnel-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/funnel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-bold.imageset/game-controller-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/game-controller.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-bold.imageset/game-controller-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/game-controller.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-bold.imageset/garage-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/garage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-bold.imageset/garage-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/garage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-bold.imageset/gas-can-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gas-can.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-bold.imageset/gas-can-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gas-can.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-bold.imageset/gas-pump-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gas-pump.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-bold.imageset/gas-pump-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gas-pump.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-bold.imageset/gauge-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gauge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-bold.imageset/gauge-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gauge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-bold.imageset/gavel-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gavel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-bold.imageset/gavel-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gavel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-bold.imageset/gear-fine-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gear-fine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-bold.imageset/gear-fine-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gear-fine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-bold.imageset/gear-six-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gear-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-bold.imageset/gear-six-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gear-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-bold.imageset/gear-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-bold.imageset/gear-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-bold.imageset/gender-female-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gender-female.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-bold.imageset/gender-female-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gender-female.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-bold.imageset/gender-intersex-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gender-intersex.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-bold.imageset/gender-intersex-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gender-intersex.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-bold.imageset/gender-male-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gender-male.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-bold.imageset/gender-male-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gender-male.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-bold.imageset/gender-neuter-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gender-neuter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-bold.imageset/gender-neuter-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gender-neuter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-bold.imageset/gender-nonbinary-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gender-nonbinary.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-bold.imageset/gender-nonbinary-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gender-nonbinary.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-bold.imageset/gender-transgender-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gender-transgender.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-bold.imageset/gender-transgender-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gender-transgender.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-bold.imageset/ghost-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/ghost.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-bold.imageset/ghost-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/ghost.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-bold.imageset/gif-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gif.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-bold.imageset/gif-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gif.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-bold.imageset/gift-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gift.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-bold.imageset/gift-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gift.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-bold.imageset/git-branch-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/git-branch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-bold.imageset/git-branch-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/git-branch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-bold.imageset/git-commit-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/git-commit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-bold.imageset/git-commit-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/git-commit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-bold.imageset/git-diff-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/git-diff.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-bold.imageset/git-diff-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/git-diff.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-bold.imageset/git-fork-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/git-fork.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-bold.imageset/git-fork-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/git-fork.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-bold.imageset/git-merge-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/git-merge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-bold.imageset/git-merge-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/git-merge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-bold.imageset/git-pull-request-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/git-pull-request.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-bold.imageset/git-pull-request-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/git-pull-request.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-bold.imageset/github-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/github-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-bold.imageset/github-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/github-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-bold.imageset/gitlab-logo-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gitlab-logo-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-bold.imageset/gitlab-logo-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gitlab-logo-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-bold.imageset/gitlab-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gitlab-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-bold.imageset/gitlab-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gitlab-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-bold.imageset/globe-hemisphere-east-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/globe-hemisphere-east.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-bold.imageset/globe-hemisphere-east-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/globe-hemisphere-east.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-bold.imageset/globe-hemisphere-west-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/globe-hemisphere-west.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-bold.imageset/globe-hemisphere-west-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/globe-hemisphere-west.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-bold.imageset/globe-simple-x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/globe-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-bold.imageset/globe-simple-x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/globe-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-bold.imageset/globe-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/globe-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-bold.imageset/globe-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/globe-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-bold.imageset/globe-stand-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/globe-stand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-bold.imageset/globe-stand-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/globe-stand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-bold.imageset/globe-x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/globe-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-bold.imageset/globe-x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/globe-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-bold.imageset/globe-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/globe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-bold.imageset/globe-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/globe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-bold.imageset/goggles-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/goggles.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-bold.imageset/goggles-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/goggles.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-bold.imageset/golf-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/golf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-bold.imageset/golf-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/golf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-bold.imageset/goodreads-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/goodreads-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-bold.imageset/goodreads-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/goodreads-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-bold.imageset/google-cardboard-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/google-cardboard-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-bold.imageset/google-cardboard-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/google-cardboard-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-bold.imageset/google-chrome-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/google-chrome-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-bold.imageset/google-chrome-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/google-chrome-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-bold.imageset/google-drive-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/google-drive-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-bold.imageset/google-drive-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/google-drive-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-bold.imageset/google-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/google-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-bold.imageset/google-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/google-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-bold.imageset/google-photos-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/google-photos-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-bold.imageset/google-photos-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/google-photos-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-bold.imageset/google-play-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/google-play-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-bold.imageset/google-play-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/google-play-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-bold.imageset/google-podcasts-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/google-podcasts-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-bold.imageset/google-podcasts-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/google-podcasts-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-bold.imageset/gps-fix-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gps-fix.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-bold.imageset/gps-fix-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gps-fix.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-bold.imageset/gps-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gps-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-bold.imageset/gps-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gps-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-bold.imageset/gps-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gps.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-bold.imageset/gps-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gps.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-bold.imageset/gradient-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/gradient.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-bold.imageset/gradient-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/gradient.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-bold.imageset/graduation-cap-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/graduation-cap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-bold.imageset/graduation-cap-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/graduation-cap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-bold.imageset/grains-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/grains-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-bold.imageset/grains-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/grains-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-bold.imageset/grains-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/grains.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-bold.imageset/grains-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/grains.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-bold.imageset/graph-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/graph.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-bold.imageset/graph-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/graph.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-bold.imageset/graphics-card-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/graphics-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-bold.imageset/graphics-card-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/graphics-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-bold.imageset/greater-than-or-equal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/greater-than-or-equal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-bold.imageset/greater-than-or-equal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/greater-than-or-equal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-bold.imageset/greater-than-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/greater-than.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-bold.imageset/greater-than-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/greater-than.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-bold.imageset/grid-four-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/grid-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-bold.imageset/grid-four-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/grid-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-bold.imageset/grid-nine-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/grid-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-bold.imageset/grid-nine-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/grid-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-bold.imageset/guitar-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/guitar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-bold.imageset/guitar-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/guitar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-bold.imageset/hair-dryer-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hair-dryer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-bold.imageset/hair-dryer-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hair-dryer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-bold.imageset/hamburger-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hamburger.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-bold.imageset/hamburger-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hamburger.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-bold.imageset/hammer-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hammer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-bold.imageset/hammer-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hammer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-bold.imageset/hand-arrow-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-bold.imageset/hand-arrow-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-bold.imageset/hand-arrow-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-bold.imageset/hand-arrow-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-bold.imageset/hand-coins-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-coins.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-bold.imageset/hand-coins-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-coins.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-bold.imageset/hand-deposit-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-deposit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-bold.imageset/hand-deposit-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-deposit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-bold.imageset/hand-eye-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-eye.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-bold.imageset/hand-eye-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-eye.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-bold.imageset/hand-fist-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-fist.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-bold.imageset/hand-fist-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-fist.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-bold.imageset/hand-grabbing-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-grabbing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-bold.imageset/hand-grabbing-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-grabbing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-bold.imageset/hand-heart-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-bold.imageset/hand-heart-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-bold.imageset/hand-palm-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-palm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-bold.imageset/hand-palm-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-palm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-bold.imageset/hand-peace-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-peace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-bold.imageset/hand-peace-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-peace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-bold.imageset/hand-pointing-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-pointing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-bold.imageset/hand-pointing-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-pointing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-bold.imageset/hand-soap-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-soap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-bold.imageset/hand-soap-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-soap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-bold.imageset/hand-swipe-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-swipe-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-bold.imageset/hand-swipe-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-swipe-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-bold.imageset/hand-swipe-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-swipe-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-bold.imageset/hand-swipe-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-swipe-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-bold.imageset/hand-tap-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-tap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-bold.imageset/hand-tap-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-tap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-bold.imageset/hand-waving-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-waving.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-bold.imageset/hand-waving-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-waving.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-bold.imageset/hand-withdraw-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-withdraw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-bold.imageset/hand-withdraw-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand-withdraw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-bold.imageset/hand-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-bold.imageset/hand-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-bold.imageset/handbag-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/handbag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-bold.imageset/handbag-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/handbag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-bold.imageset/handbag-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/handbag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-bold.imageset/handbag-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/handbag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-bold.imageset/hands-clapping-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hands-clapping.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-bold.imageset/hands-clapping-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hands-clapping.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-bold.imageset/hands-praying-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hands-praying.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-bold.imageset/hands-praying-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hands-praying.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-bold.imageset/handshake-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/handshake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-bold.imageset/handshake-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/handshake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-bold.imageset/hard-drive-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hard-drive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-bold.imageset/hard-drive-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hard-drive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-bold.imageset/hard-drives-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hard-drives.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-bold.imageset/hard-drives-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hard-drives.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-bold.imageset/hard-hat-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hard-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-bold.imageset/hard-hat-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hard-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-bold.imageset/hash-straight-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hash-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-bold.imageset/hash-straight-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hash-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-bold.imageset/hash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-bold.imageset/hash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-bold.imageset/head-circuit-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/head-circuit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-bold.imageset/head-circuit-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/head-circuit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-bold.imageset/headlights-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/headlights.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-bold.imageset/headlights-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/headlights.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-bold.imageset/headphones-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/headphones.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-bold.imageset/headphones-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/headphones.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-bold.imageset/headset-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/headset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-bold.imageset/headset-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/headset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-bold.imageset/heart-break-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/heart-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-bold.imageset/heart-break-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/heart-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-bold.imageset/heart-half-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/heart-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-bold.imageset/heart-half-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/heart-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-bold.imageset/heart-straight-break-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/heart-straight-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-bold.imageset/heart-straight-break-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/heart-straight-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-bold.imageset/heart-straight-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/heart-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-bold.imageset/heart-straight-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/heart-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-bold.imageset/heart-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-bold.imageset/heart-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-bold.imageset/heartbeat-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/heartbeat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-bold.imageset/heartbeat-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/heartbeat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-bold.imageset/hexagon-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hexagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-bold.imageset/hexagon-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hexagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-bold.imageset/high-definition-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/high-definition.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-bold.imageset/high-definition-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/high-definition.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-bold.imageset/high-heel-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/high-heel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-bold.imageset/high-heel-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/high-heel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-bold.imageset/highlighter-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/highlighter-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-bold.imageset/highlighter-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/highlighter-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-bold.imageset/highlighter-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/highlighter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-bold.imageset/highlighter-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/highlighter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-bold.imageset/hockey-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hockey.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-bold.imageset/hockey-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hockey.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-bold.imageset/hoodie-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hoodie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-bold.imageset/hoodie-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hoodie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-bold.imageset/horse-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/horse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-bold.imageset/horse-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/horse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-bold.imageset/hospital-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hospital.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-bold.imageset/hospital-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hospital.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-bold.imageset/hourglass-high-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-bold.imageset/hourglass-high-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-bold.imageset/hourglass-low-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-bold.imageset/hourglass-low-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-bold.imageset/hourglass-medium-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-bold.imageset/hourglass-medium-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-bold.imageset/hourglass-simple-high-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass-simple-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-bold.imageset/hourglass-simple-high-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass-simple-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-bold.imageset/hourglass-simple-low-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass-simple-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-bold.imageset/hourglass-simple-low-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass-simple-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-bold.imageset/hourglass-simple-medium-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass-simple-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-bold.imageset/hourglass-simple-medium-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass-simple-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-bold.imageset/hourglass-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-bold.imageset/hourglass-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-bold.imageset/hourglass-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-bold.imageset/hourglass-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hourglass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-bold.imageset/house-line-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/house-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-bold.imageset/house-line-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/house-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-bold.imageset/house-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/house-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-bold.imageset/house-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/house-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-bold.imageset/house-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/house.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-bold.imageset/house-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/house.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-bold.imageset/hurricane-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/hurricane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-bold.imageset/hurricane-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/hurricane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-bold.imageset/ice-cream-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/ice-cream.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-bold.imageset/ice-cream-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/ice-cream.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-bold.imageset/identification-badge-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/identification-badge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-bold.imageset/identification-badge-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/identification-badge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-bold.imageset/identification-card-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/identification-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-bold.imageset/identification-card-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/identification-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-bold.imageset/image-broken-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/image-broken.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-bold.imageset/image-broken-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/image-broken.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-bold.imageset/image-square-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/image-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-bold.imageset/image-square-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/image-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-bold.imageset/image-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/image.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-bold.imageset/image-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/image.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-bold.imageset/images-square-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/images-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-bold.imageset/images-square-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/images-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-bold.imageset/images-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/images.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-bold.imageset/images-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/images.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-bold.imageset/infinity-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/infinity.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-bold.imageset/infinity-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/infinity.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-bold.imageset/info-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/info.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-bold.imageset/info-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/info.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-bold.imageset/instagram-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/instagram-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-bold.imageset/instagram-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/instagram-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-bold.imageset/intersect-square-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/intersect-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-bold.imageset/intersect-square-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/intersect-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-bold.imageset/intersect-three-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/intersect-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-bold.imageset/intersect-three-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/intersect-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-bold.imageset/intersect-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/intersect.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-bold.imageset/intersect-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/intersect.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-bold.imageset/intersection-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/intersection.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-bold.imageset/intersection-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/intersection.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-bold.imageset/invoice-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/invoice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-bold.imageset/invoice-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/invoice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-bold.imageset/island-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/island.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-bold.imageset/island-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/island.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-bold.imageset/jar-label-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/jar-label.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-bold.imageset/jar-label-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/jar-label.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-bold.imageset/jar-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/jar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-bold.imageset/jar-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/jar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-bold.imageset/jeep-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/jeep.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-bold.imageset/jeep-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/jeep.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-bold.imageset/joystick-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/joystick.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-bold.imageset/joystick-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/joystick.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-bold.imageset/kanban-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/kanban.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-bold.imageset/kanban-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/kanban.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-bold.imageset/key-return-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/key-return.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-bold.imageset/key-return-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/key-return.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-bold.imageset/key-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/key.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-bold.imageset/key-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/key.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-bold.imageset/keyboard-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/keyboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-bold.imageset/keyboard-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/keyboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-bold.imageset/keyhole-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/keyhole.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-bold.imageset/keyhole-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/keyhole.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-bold.imageset/knife-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/knife.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-bold.imageset/knife-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/knife.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-bold.imageset/ladder-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/ladder-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-bold.imageset/ladder-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/ladder-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-bold.imageset/ladder-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/ladder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-bold.imageset/ladder-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/ladder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-bold.imageset/lamp-pendant-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lamp-pendant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-bold.imageset/lamp-pendant-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lamp-pendant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-bold.imageset/lamp-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lamp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-bold.imageset/lamp-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lamp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-bold.imageset/laptop-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/laptop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-bold.imageset/laptop-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/laptop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-bold.imageset/lasso-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lasso.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-bold.imageset/lasso-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lasso.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-bold.imageset/lastfm-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lastfm-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-bold.imageset/lastfm-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lastfm-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-bold.imageset/layout-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/layout.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-bold.imageset/layout-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/layout.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-bold.imageset/leaf-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/leaf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-bold.imageset/leaf-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/leaf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-bold.imageset/lectern-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lectern.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-bold.imageset/lectern-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lectern.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-bold.imageset/lego-smiley-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lego-smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-bold.imageset/lego-smiley-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lego-smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-bold.imageset/lego-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lego.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-bold.imageset/lego-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lego.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-bold.imageset/less-than-or-equal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/less-than-or-equal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-bold.imageset/less-than-or-equal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/less-than-or-equal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-bold.imageset/less-than-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/less-than.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-bold.imageset/less-than-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/less-than.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-bold.imageset/letter-circle-h-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/letter-circle-h.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-bold.imageset/letter-circle-h-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/letter-circle-h.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-bold.imageset/letter-circle-p-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/letter-circle-p.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-bold.imageset/letter-circle-p-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/letter-circle-p.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-bold.imageset/letter-circle-v-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/letter-circle-v.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-bold.imageset/letter-circle-v-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/letter-circle-v.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-bold.imageset/lifebuoy-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lifebuoy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-bold.imageset/lifebuoy-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lifebuoy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-bold.imageset/lightbulb-filament-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lightbulb-filament.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-bold.imageset/lightbulb-filament-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lightbulb-filament.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-bold.imageset/lightbulb-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lightbulb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-bold.imageset/lightbulb-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lightbulb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-bold.imageset/lighthouse-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lighthouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-bold.imageset/lighthouse-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lighthouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-bold.imageset/lightning-a-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lightning-a.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-bold.imageset/lightning-a-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lightning-a.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-bold.imageset/lightning-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lightning-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-bold.imageset/lightning-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lightning-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-bold.imageset/lightning-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lightning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-bold.imageset/lightning-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lightning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-bold.imageset/line-segment-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/line-segment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-bold.imageset/line-segment-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/line-segment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-bold.imageset/line-segments-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/line-segments.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-bold.imageset/line-segments-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/line-segments.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-bold.imageset/line-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-bold.imageset/line-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-bold.imageset/link-break-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/link-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-bold.imageset/link-break-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/link-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-bold.imageset/link-simple-break-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/link-simple-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-bold.imageset/link-simple-break-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/link-simple-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-bold.imageset/link-simple-horizontal-break-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/link-simple-horizontal-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-bold.imageset/link-simple-horizontal-break-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/link-simple-horizontal-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-bold.imageset/link-simple-horizontal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/link-simple-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-bold.imageset/link-simple-horizontal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/link-simple-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-bold.imageset/link-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/link-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-bold.imageset/link-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/link-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-bold.imageset/link-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/link.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-bold.imageset/link-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/link.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-bold.imageset/linkedin-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/linkedin-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-bold.imageset/linkedin-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/linkedin-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-bold.imageset/linktree-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/linktree-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-bold.imageset/linktree-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/linktree-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-bold.imageset/linux-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/linux-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-bold.imageset/linux-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/linux-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-bold.imageset/list-bullets-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-bullets.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-bold.imageset/list-bullets-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-bullets.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-bold.imageset/list-checks-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-checks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-bold.imageset/list-checks-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-checks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-bold.imageset/list-dashes-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-dashes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-bold.imageset/list-dashes-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-dashes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-bold.imageset/list-heart-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-bold.imageset/list-heart-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-bold.imageset/list-magnifying-glass-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-bold.imageset/list-magnifying-glass-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-bold.imageset/list-numbers-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-numbers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-bold.imageset/list-numbers-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-numbers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-bold.imageset/list-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-bold.imageset/list-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-bold.imageset/list-star-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-bold.imageset/list-star-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/list-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bold.imageset/list-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bold.imageset/list-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-bold.imageset/lock-key-open-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock-key-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-bold.imageset/lock-key-open-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock-key-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-bold.imageset/lock-key-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock-key.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-bold.imageset/lock-key-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock-key.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-bold.imageset/lock-laminated-open-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock-laminated-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-bold.imageset/lock-laminated-open-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock-laminated-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-bold.imageset/lock-laminated-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock-laminated.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-bold.imageset/lock-laminated-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock-laminated.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-bold.imageset/lock-open-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-bold.imageset/lock-open-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-bold.imageset/lock-simple-open-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock-simple-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-bold.imageset/lock-simple-open-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock-simple-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-bold.imageset/lock-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-bold.imageset/lock-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-bold.imageset/lock-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-bold.imageset/lock-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-bold.imageset/lockers-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/lockers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-bold.imageset/lockers-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/lockers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-bold.imageset/log-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/log.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-bold.imageset/log-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/log.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-bold.imageset/magic-wand-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/magic-wand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-bold.imageset/magic-wand-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/magic-wand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-bold.imageset/magnet-straight-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/magnet-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-bold.imageset/magnet-straight-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/magnet-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-bold.imageset/magnet-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/magnet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-bold.imageset/magnet-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/magnet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-bold.imageset/magnifying-glass-minus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/magnifying-glass-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-bold.imageset/magnifying-glass-minus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/magnifying-glass-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-bold.imageset/magnifying-glass-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/magnifying-glass-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-bold.imageset/magnifying-glass-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/magnifying-glass-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-bold.imageset/magnifying-glass-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-bold.imageset/magnifying-glass-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-bold.imageset/mailbox-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/mailbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-bold.imageset/mailbox-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/mailbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-bold.imageset/map-pin-area-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-pin-area.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-bold.imageset/map-pin-area-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-pin-area.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-bold.imageset/map-pin-line-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-pin-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-bold.imageset/map-pin-line-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-pin-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-bold.imageset/map-pin-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-pin-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-bold.imageset/map-pin-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-pin-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-bold.imageset/map-pin-simple-area-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-pin-simple-area.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-bold.imageset/map-pin-simple-area-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-pin-simple-area.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-bold.imageset/map-pin-simple-line-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-pin-simple-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-bold.imageset/map-pin-simple-line-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-pin-simple-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-bold.imageset/map-pin-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-pin-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-bold.imageset/map-pin-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-pin-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-bold.imageset/map-pin-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-pin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-bold.imageset/map-pin-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-pin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-bold.imageset/map-trifold-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-trifold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-bold.imageset/map-trifold-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/map-trifold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-bold.imageset/markdown-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/markdown-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-bold.imageset/markdown-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/markdown-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-bold.imageset/marker-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/marker-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-bold.imageset/marker-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/marker-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-bold.imageset/martini-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/martini.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-bold.imageset/martini-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/martini.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-bold.imageset/mask-happy-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/mask-happy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-bold.imageset/mask-happy-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/mask-happy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-bold.imageset/mask-sad-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/mask-sad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-bold.imageset/mask-sad-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/mask-sad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-bold.imageset/mastodon-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/mastodon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-bold.imageset/mastodon-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/mastodon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-bold.imageset/math-operations-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/math-operations.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-bold.imageset/math-operations-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/math-operations.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-bold.imageset/matrix-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/matrix-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-bold.imageset/matrix-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/matrix-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-bold.imageset/medal-military-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/medal-military.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-bold.imageset/medal-military-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/medal-military.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-bold.imageset/medal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/medal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-bold.imageset/medal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/medal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-bold.imageset/medium-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/medium-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-bold.imageset/medium-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/medium-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-bold.imageset/megaphone-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/megaphone-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-bold.imageset/megaphone-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/megaphone-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-bold.imageset/megaphone-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/megaphone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-bold.imageset/megaphone-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/megaphone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-bold.imageset/member-of-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/member-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-bold.imageset/member-of-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/member-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-bold.imageset/memory-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/memory.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-bold.imageset/memory-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/memory.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-bold.imageset/messenger-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/messenger-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-bold.imageset/messenger-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/messenger-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-bold.imageset/meta-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/meta-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-bold.imageset/meta-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/meta-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-bold.imageset/meteor-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/meteor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-bold.imageset/meteor-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/meteor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-bold.imageset/metronome-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/metronome.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-bold.imageset/metronome-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/metronome.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-bold.imageset/microphone-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/microphone-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-bold.imageset/microphone-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/microphone-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-bold.imageset/microphone-stage-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/microphone-stage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-bold.imageset/microphone-stage-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/microphone-stage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-bold.imageset/microphone-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/microphone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-bold.imageset/microphone-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/microphone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-bold.imageset/microscope-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/microscope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-bold.imageset/microscope-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/microscope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-bold.imageset/microsoft-excel-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/microsoft-excel-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-bold.imageset/microsoft-excel-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/microsoft-excel-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-bold.imageset/microsoft-outlook-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/microsoft-outlook-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-bold.imageset/microsoft-outlook-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/microsoft-outlook-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-bold.imageset/microsoft-powerpoint-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/microsoft-powerpoint-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-bold.imageset/microsoft-powerpoint-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/microsoft-powerpoint-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-bold.imageset/microsoft-teams-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/microsoft-teams-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-bold.imageset/microsoft-teams-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/microsoft-teams-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-bold.imageset/microsoft-word-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/microsoft-word-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-bold.imageset/microsoft-word-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/microsoft-word-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-bold.imageset/minus-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/minus-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-bold.imageset/minus-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/minus-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-bold.imageset/minus-square-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/minus-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-bold.imageset/minus-square-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/minus-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-bold.imageset/minus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-bold.imageset/minus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-bold.imageset/money-wavy-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/money-wavy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-bold.imageset/money-wavy-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/money-wavy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-bold.imageset/money-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/money.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-bold.imageset/money-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/money.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-bold.imageset/monitor-arrow-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/monitor-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-bold.imageset/monitor-arrow-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/monitor-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-bold.imageset/monitor-play-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/monitor-play.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-bold.imageset/monitor-play-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/monitor-play.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-bold.imageset/monitor-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/monitor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-bold.imageset/monitor-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/monitor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-bold.imageset/moon-stars-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/moon-stars.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-bold.imageset/moon-stars-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/moon-stars.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-bold.imageset/moon-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/moon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-bold.imageset/moon-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/moon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-bold.imageset/moped-front-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/moped-front.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-bold.imageset/moped-front-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/moped-front.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-bold.imageset/moped-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/moped.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-bold.imageset/moped-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/moped.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-bold.imageset/mosque-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/mosque.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-bold.imageset/mosque-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/mosque.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-bold.imageset/motorcycle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/motorcycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-bold.imageset/motorcycle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/motorcycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-bold.imageset/mountains-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/mountains.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-bold.imageset/mountains-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/mountains.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-bold.imageset/mouse-left-click-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/mouse-left-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-bold.imageset/mouse-left-click-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/mouse-left-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-bold.imageset/mouse-middle-click-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/mouse-middle-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-bold.imageset/mouse-middle-click-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/mouse-middle-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-bold.imageset/mouse-right-click-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/mouse-right-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-bold.imageset/mouse-right-click-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/mouse-right-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-bold.imageset/mouse-scroll-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/mouse-scroll.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-bold.imageset/mouse-scroll-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/mouse-scroll.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-bold.imageset/mouse-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/mouse-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-bold.imageset/mouse-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/mouse-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-bold.imageset/mouse-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/mouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-bold.imageset/mouse-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/mouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-bold.imageset/music-note-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/music-note-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-bold.imageset/music-note-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/music-note-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-bold.imageset/music-note-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/music-note.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-bold.imageset/music-note-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/music-note.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-bold.imageset/music-notes-minus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/music-notes-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-bold.imageset/music-notes-minus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/music-notes-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-bold.imageset/music-notes-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/music-notes-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-bold.imageset/music-notes-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/music-notes-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-bold.imageset/music-notes-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/music-notes-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-bold.imageset/music-notes-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/music-notes-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-bold.imageset/music-notes-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/music-notes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-bold.imageset/music-notes-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/music-notes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-bold.imageset/navigation-arrow-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/navigation-arrow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-bold.imageset/navigation-arrow-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/navigation-arrow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-bold.imageset/needle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/needle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-bold.imageset/needle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/needle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-bold.imageset/network-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/network-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-bold.imageset/network-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/network-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-bold.imageset/network-x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/network-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-bold.imageset/network-x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/network-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-bold.imageset/network-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/network.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-bold.imageset/network-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/network.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-bold.imageset/newspaper-clipping-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/newspaper-clipping.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-bold.imageset/newspaper-clipping-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/newspaper-clipping.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-bold.imageset/newspaper-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/newspaper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-bold.imageset/newspaper-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/newspaper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-bold.imageset/not-equals-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/not-equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-bold.imageset/not-equals-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/not-equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-bold.imageset/not-member-of-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/not-member-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-bold.imageset/not-member-of-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/not-member-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-bold.imageset/not-subset-of-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/not-subset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-bold.imageset/not-subset-of-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/not-subset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-bold.imageset/not-superset-of-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/not-superset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-bold.imageset/not-superset-of-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/not-superset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-bold.imageset/notches-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/notches.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-bold.imageset/notches-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/notches.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-bold.imageset/note-blank-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/note-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-bold.imageset/note-blank-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/note-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-bold.imageset/note-pencil-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/note-pencil.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-bold.imageset/note-pencil-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/note-pencil.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-bold.imageset/note-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/note.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-bold.imageset/note-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/note.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-bold.imageset/notebook-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/notebook.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-bold.imageset/notebook-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/notebook.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-bold.imageset/notepad-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/notepad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-bold.imageset/notepad-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/notepad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-bold.imageset/notification-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/notification.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-bold.imageset/notification-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/notification.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-bold.imageset/notion-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/notion-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-bold.imageset/notion-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/notion-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-bold.imageset/nuclear-plant-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/nuclear-plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-bold.imageset/nuclear-plant-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/nuclear-plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-bold.imageset/number-circle-eight-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-bold.imageset/number-circle-eight-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-bold.imageset/number-circle-five-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-bold.imageset/number-circle-five-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-bold.imageset/number-circle-four-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-bold.imageset/number-circle-four-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-bold.imageset/number-circle-nine-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-bold.imageset/number-circle-nine-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-bold.imageset/number-circle-one-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-bold.imageset/number-circle-one-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-bold.imageset/number-circle-seven-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-bold.imageset/number-circle-seven-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-bold.imageset/number-circle-six-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-bold.imageset/number-circle-six-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-bold.imageset/number-circle-three-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-bold.imageset/number-circle-three-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-bold.imageset/number-circle-two-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-bold.imageset/number-circle-two-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-bold.imageset/number-circle-zero-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-bold.imageset/number-circle-zero-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-circle-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-bold.imageset/number-eight-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-bold.imageset/number-eight-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-bold.imageset/number-five-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-bold.imageset/number-five-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-bold.imageset/number-four-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-bold.imageset/number-four-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-bold.imageset/number-nine-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-bold.imageset/number-nine-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-bold.imageset/number-one-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-bold.imageset/number-one-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-bold.imageset/number-seven-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-bold.imageset/number-seven-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-bold.imageset/number-six-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-bold.imageset/number-six-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-bold.imageset/number-square-eight-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-bold.imageset/number-square-eight-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-bold.imageset/number-square-five-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-bold.imageset/number-square-five-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-bold.imageset/number-square-four-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-bold.imageset/number-square-four-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-bold.imageset/number-square-nine-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-bold.imageset/number-square-nine-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-bold.imageset/number-square-one-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-bold.imageset/number-square-one-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-bold.imageset/number-square-seven-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-bold.imageset/number-square-seven-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-bold.imageset/number-square-six-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-bold.imageset/number-square-six-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-bold.imageset/number-square-three-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-bold.imageset/number-square-three-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-bold.imageset/number-square-two-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-bold.imageset/number-square-two-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-bold.imageset/number-square-zero-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-bold.imageset/number-square-zero-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-square-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-bold.imageset/number-three-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-bold.imageset/number-three-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-bold.imageset/number-two-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-bold.imageset/number-two-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-bold.imageset/number-zero-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-bold.imageset/number-zero-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/number-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-bold.imageset/numpad-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/numpad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-bold.imageset/numpad-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/numpad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-bold.imageset/nut-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/nut.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-bold.imageset/nut-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/nut.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-bold.imageset/ny-times-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/ny-times-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-bold.imageset/ny-times-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/ny-times-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-bold.imageset/octagon-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/octagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-bold.imageset/octagon-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/octagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-bold.imageset/office-chair-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/office-chair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-bold.imageset/office-chair-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/office-chair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-bold.imageset/onigiri-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/onigiri.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-bold.imageset/onigiri-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/onigiri.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-bold.imageset/open-ai-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/open-ai-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-bold.imageset/open-ai-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/open-ai-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-bold.imageset/option-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/option.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-bold.imageset/option-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/option.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-bold.imageset/orange-slice-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/orange-slice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-bold.imageset/orange-slice-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/orange-slice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-bold.imageset/orange-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/orange.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-bold.imageset/orange-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/orange.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-bold.imageset/oven-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/oven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-bold.imageset/oven-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/oven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-bold.imageset/package-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/package.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-bold.imageset/package-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/package.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-bold.imageset/paint-brush-broad-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/paint-brush-broad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-bold.imageset/paint-brush-broad-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/paint-brush-broad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-bold.imageset/paint-brush-household-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/paint-brush-household.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-bold.imageset/paint-brush-household-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/paint-brush-household.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-bold.imageset/paint-brush-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/paint-brush.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-bold.imageset/paint-brush-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/paint-brush.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-bold.imageset/paint-bucket-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/paint-bucket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-bold.imageset/paint-bucket-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/paint-bucket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-bold.imageset/paint-roller-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/paint-roller.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-bold.imageset/paint-roller-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/paint-roller.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-bold.imageset/palette-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/palette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-bold.imageset/palette-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/palette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-bold.imageset/panorama-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/panorama.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-bold.imageset/panorama-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/panorama.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-bold.imageset/pants-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pants.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-bold.imageset/pants-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pants.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-bold.imageset/paper-plane-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/paper-plane-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-bold.imageset/paper-plane-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/paper-plane-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-bold.imageset/paper-plane-tilt-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/paper-plane-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-bold.imageset/paper-plane-tilt-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/paper-plane-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-bold.imageset/paper-plane-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/paper-plane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-bold.imageset/paper-plane-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/paper-plane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-bold.imageset/paperclip-horizontal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/paperclip-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-bold.imageset/paperclip-horizontal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/paperclip-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-bold.imageset/paperclip-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/paperclip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-bold.imageset/paperclip-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/paperclip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-bold.imageset/parachute-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/parachute.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-bold.imageset/parachute-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/parachute.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-bold.imageset/paragraph-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/paragraph.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-bold.imageset/paragraph-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/paragraph.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-bold.imageset/parallelogram-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/parallelogram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-bold.imageset/parallelogram-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/parallelogram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-bold.imageset/park-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/park.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-bold.imageset/park-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/park.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-bold.imageset/password-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/password.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-bold.imageset/password-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/password.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-bold.imageset/path-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/path.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-bold.imageset/path-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/path.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-bold.imageset/patreon-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/patreon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-bold.imageset/patreon-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/patreon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-bold.imageset/pause-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pause-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-bold.imageset/pause-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pause-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-bold.imageset/pause-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-bold.imageset/pause-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-bold.imageset/paw-print-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/paw-print.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-bold.imageset/paw-print-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/paw-print.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-bold.imageset/paypal-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/paypal-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-bold.imageset/paypal-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/paypal-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-bold.imageset/peace-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/peace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-bold.imageset/peace-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/peace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-bold.imageset/pen-nib-straight-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pen-nib-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-bold.imageset/pen-nib-straight-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pen-nib-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-bold.imageset/pen-nib-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pen-nib.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-bold.imageset/pen-nib-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pen-nib.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-bold.imageset/pen-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-bold.imageset/pen-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-bold.imageset/pencil-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-bold.imageset/pencil-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-bold.imageset/pencil-line-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-bold.imageset/pencil-line-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-bold.imageset/pencil-ruler-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil-ruler.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-bold.imageset/pencil-ruler-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil-ruler.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-bold.imageset/pencil-simple-line-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil-simple-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-bold.imageset/pencil-simple-line-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil-simple-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-bold.imageset/pencil-simple-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-bold.imageset/pencil-simple-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-bold.imageset/pencil-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-bold.imageset/pencil-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-bold.imageset/pencil-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-bold.imageset/pencil-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-bold.imageset/pencil-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-bold.imageset/pencil-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pencil.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-bold.imageset/pentagon-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pentagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-bold.imageset/pentagon-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pentagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-bold.imageset/pentagram-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pentagram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-bold.imageset/pentagram-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pentagram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-bold.imageset/pepper-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pepper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-bold.imageset/pepper-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pepper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-bold.imageset/percent-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/percent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-bold.imageset/percent-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/percent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-bold.imageset/person-arms-spread-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-arms-spread.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-bold.imageset/person-arms-spread-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-arms-spread.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-bold.imageset/person-simple-bike-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-bike.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-bold.imageset/person-simple-bike-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-bike.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-bold.imageset/person-simple-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-bold.imageset/person-simple-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-bold.imageset/person-simple-hike-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-hike.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-bold.imageset/person-simple-hike-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-hike.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-bold.imageset/person-simple-run-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-run.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-bold.imageset/person-simple-run-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-run.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-bold.imageset/person-simple-ski-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-ski.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-bold.imageset/person-simple-ski-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-ski.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-bold.imageset/person-simple-snowboard-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-snowboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-bold.imageset/person-simple-snowboard-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-snowboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-bold.imageset/person-simple-swim-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-swim.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-bold.imageset/person-simple-swim-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-swim.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-bold.imageset/person-simple-tai-chi-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-tai-chi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-bold.imageset/person-simple-tai-chi-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-tai-chi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-bold.imageset/person-simple-throw-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-throw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-bold.imageset/person-simple-throw-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-throw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-bold.imageset/person-simple-walk-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-walk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-bold.imageset/person-simple-walk-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple-walk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bold.imageset/person-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bold.imageset/person-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/person-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-bold.imageset/person-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/person.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-bold.imageset/person-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/person.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-bold.imageset/perspective-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/perspective.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-bold.imageset/perspective-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/perspective.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-bold.imageset/phone-call-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-call.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-bold.imageset/phone-call-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-call.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-bold.imageset/phone-disconnect-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-disconnect.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-bold.imageset/phone-disconnect-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-disconnect.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-bold.imageset/phone-incoming-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-incoming.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-bold.imageset/phone-incoming-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-incoming.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-bold.imageset/phone-list-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-bold.imageset/phone-list-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-bold.imageset/phone-outgoing-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-outgoing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-bold.imageset/phone-outgoing-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-outgoing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-bold.imageset/phone-pause-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-bold.imageset/phone-pause-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-bold.imageset/phone-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-bold.imageset/phone-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-bold.imageset/phone-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-bold.imageset/phone-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-bold.imageset/phone-transfer-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-transfer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-bold.imageset/phone-transfer-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-transfer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-bold.imageset/phone-x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-bold.imageset/phone-x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-bold.imageset/phone-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-bold.imageset/phone-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/phone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-bold.imageset/phosphor-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/phosphor-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-bold.imageset/phosphor-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/phosphor-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-bold.imageset/pi-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-bold.imageset/pi-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-bold.imageset/piano-keys-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/piano-keys.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-bold.imageset/piano-keys-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/piano-keys.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-bold.imageset/picnic-table-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/picnic-table.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-bold.imageset/picnic-table-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/picnic-table.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-bold.imageset/picture-in-picture-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/picture-in-picture.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-bold.imageset/picture-in-picture-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/picture-in-picture.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-bold.imageset/piggy-bank-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/piggy-bank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-bold.imageset/piggy-bank-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/piggy-bank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-bold.imageset/pill-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pill.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-bold.imageset/pill-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pill.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-bold.imageset/ping-pong-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/ping-pong.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-bold.imageset/ping-pong-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/ping-pong.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-bold.imageset/pint-glass-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pint-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-bold.imageset/pint-glass-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pint-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-bold.imageset/pinterest-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pinterest-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-bold.imageset/pinterest-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pinterest-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-bold.imageset/pinwheel-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pinwheel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-bold.imageset/pinwheel-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pinwheel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-bold.imageset/pipe-wrench-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pipe-wrench.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-bold.imageset/pipe-wrench-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pipe-wrench.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-bold.imageset/pipe-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pipe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-bold.imageset/pipe-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pipe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-bold.imageset/pix-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pix-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-bold.imageset/pix-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pix-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-bold.imageset/pizza-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pizza.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-bold.imageset/pizza-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pizza.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-bold.imageset/placeholder-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/placeholder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-bold.imageset/placeholder-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/placeholder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-bold.imageset/planet-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/planet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-bold.imageset/planet-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/planet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-bold.imageset/plant-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-bold.imageset/plant-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-bold.imageset/play-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/play-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-bold.imageset/play-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/play-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-bold.imageset/play-pause-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/play-pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-bold.imageset/play-pause-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/play-pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-bold.imageset/play-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/play.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-bold.imageset/play-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/play.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-bold.imageset/playlist-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/playlist.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-bold.imageset/playlist-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/playlist.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-bold.imageset/plug-charging-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/plug-charging.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-bold.imageset/plug-charging-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/plug-charging.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-bold.imageset/plug-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/plug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-bold.imageset/plug-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/plug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-bold.imageset/plugs-connected-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/plugs-connected.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-bold.imageset/plugs-connected-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/plugs-connected.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-bold.imageset/plugs-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/plugs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-bold.imageset/plugs-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/plugs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-bold.imageset/plus-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/plus-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-bold.imageset/plus-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/plus-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-bold.imageset/plus-minus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/plus-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-bold.imageset/plus-minus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/plus-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-bold.imageset/plus-square-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/plus-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-bold.imageset/plus-square-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/plus-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-bold.imageset/plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-bold.imageset/plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-bold.imageset/poker-chip-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/poker-chip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-bold.imageset/poker-chip-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/poker-chip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-bold.imageset/police-car-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/police-car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-bold.imageset/police-car-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/police-car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-bold.imageset/polygon-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/polygon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-bold.imageset/polygon-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/polygon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-bold.imageset/popcorn-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/popcorn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-bold.imageset/popcorn-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/popcorn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-bold.imageset/popsicle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/popsicle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-bold.imageset/popsicle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/popsicle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-bold.imageset/potted-plant-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/potted-plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-bold.imageset/potted-plant-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/potted-plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-bold.imageset/power-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/power.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-bold.imageset/power-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/power.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-bold.imageset/prescription-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/prescription.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-bold.imageset/prescription-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/prescription.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-bold.imageset/presentation-chart-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/presentation-chart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-bold.imageset/presentation-chart-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/presentation-chart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-bold.imageset/presentation-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/presentation.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-bold.imageset/presentation-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/presentation.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-bold.imageset/printer-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/printer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-bold.imageset/printer-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/printer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-bold.imageset/prohibit-inset-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/prohibit-inset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-bold.imageset/prohibit-inset-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/prohibit-inset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-bold.imageset/prohibit-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/prohibit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-bold.imageset/prohibit-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/prohibit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-bold.imageset/projector-screen-chart-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/projector-screen-chart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-bold.imageset/projector-screen-chart-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/projector-screen-chart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-bold.imageset/projector-screen-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/projector-screen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-bold.imageset/projector-screen-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/projector-screen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-bold.imageset/pulse-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/pulse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-bold.imageset/pulse-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/pulse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-bold.imageset/push-pin-simple-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/push-pin-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-bold.imageset/push-pin-simple-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/push-pin-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-bold.imageset/push-pin-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/push-pin-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-bold.imageset/push-pin-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/push-pin-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-bold.imageset/push-pin-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/push-pin-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-bold.imageset/push-pin-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/push-pin-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-bold.imageset/push-pin-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/push-pin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-bold.imageset/push-pin-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/push-pin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-bold.imageset/puzzle-piece-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/puzzle-piece.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-bold.imageset/puzzle-piece-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/puzzle-piece.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-bold.imageset/qr-code-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/qr-code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-bold.imageset/qr-code-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/qr-code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-bold.imageset/question-mark-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/question-mark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-bold.imageset/question-mark-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/question-mark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-bold.imageset/question-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/question.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-bold.imageset/question-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/question.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-bold.imageset/queue-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/queue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-bold.imageset/queue-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/queue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-bold.imageset/quotes-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/quotes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-bold.imageset/quotes-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/quotes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-bold.imageset/rabbit-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/rabbit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-bold.imageset/rabbit-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/rabbit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-bold.imageset/racquet-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/racquet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-bold.imageset/racquet-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/racquet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-bold.imageset/radical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/radical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-bold.imageset/radical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/radical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-bold.imageset/radio-button-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/radio-button.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-bold.imageset/radio-button-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/radio-button.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-bold.imageset/radio-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/radio.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-bold.imageset/radio-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/radio.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-bold.imageset/radioactive-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/radioactive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-bold.imageset/radioactive-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/radioactive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-bold.imageset/rainbow-cloud-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/rainbow-cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-bold.imageset/rainbow-cloud-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/rainbow-cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-bold.imageset/rainbow-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/rainbow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-bold.imageset/rainbow-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/rainbow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-bold.imageset/ranking-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/ranking.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-bold.imageset/ranking-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/ranking.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-bold.imageset/read-cv-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/read-cv-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-bold.imageset/read-cv-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/read-cv-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-bold.imageset/receipt-x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/receipt-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-bold.imageset/receipt-x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/receipt-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-bold.imageset/receipt-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/receipt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-bold.imageset/receipt-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/receipt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-bold.imageset/record-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/record.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-bold.imageset/record-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/record.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-bold.imageset/rectangle-dashed-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/rectangle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-bold.imageset/rectangle-dashed-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/rectangle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-bold.imageset/rectangle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/rectangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-bold.imageset/rectangle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/rectangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-bold.imageset/recycle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/recycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-bold.imageset/recycle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/recycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-bold.imageset/reddit-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/reddit-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-bold.imageset/reddit-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/reddit-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-bold.imageset/repeat-once-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/repeat-once.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-bold.imageset/repeat-once-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/repeat-once.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-bold.imageset/repeat-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/repeat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-bold.imageset/repeat-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/repeat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-bold.imageset/replit-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/replit-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-bold.imageset/replit-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/replit-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-bold.imageset/resize-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/resize.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-bold.imageset/resize-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/resize.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-bold.imageset/rewind-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/rewind-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-bold.imageset/rewind-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/rewind-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-bold.imageset/rewind-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/rewind.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-bold.imageset/rewind-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/rewind.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-bold.imageset/road-horizon-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/road-horizon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-bold.imageset/road-horizon-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/road-horizon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-bold.imageset/robot-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/robot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-bold.imageset/robot-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/robot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-bold.imageset/rocket-launch-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/rocket-launch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-bold.imageset/rocket-launch-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/rocket-launch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-bold.imageset/rocket-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/rocket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-bold.imageset/rocket-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/rocket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-bold.imageset/rows-plus-bottom-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/rows-plus-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-bold.imageset/rows-plus-bottom-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/rows-plus-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-bold.imageset/rows-plus-top-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/rows-plus-top.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-bold.imageset/rows-plus-top-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/rows-plus-top.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-bold.imageset/rows-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/rows.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-bold.imageset/rows-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/rows.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-bold.imageset/rss-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/rss-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-bold.imageset/rss-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/rss-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-bold.imageset/rss-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/rss.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-bold.imageset/rss-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/rss.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-bold.imageset/rug-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/rug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-bold.imageset/rug-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/rug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-bold.imageset/ruler-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/ruler.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-bold.imageset/ruler-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/ruler.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-bold.imageset/sailboat-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sailboat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-bold.imageset/sailboat-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sailboat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-bold.imageset/scales-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/scales.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-bold.imageset/scales-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/scales.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-bold.imageset/scan-smiley-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/scan-smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-bold.imageset/scan-smiley-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/scan-smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-bold.imageset/scan-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/scan.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-bold.imageset/scan-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/scan.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-bold.imageset/scissors-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/scissors.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-bold.imageset/scissors-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/scissors.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-bold.imageset/scooter-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/scooter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-bold.imageset/scooter-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/scooter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-bold.imageset/screencast-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/screencast.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-bold.imageset/screencast-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/screencast.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-bold.imageset/screwdriver-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/screwdriver.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-bold.imageset/screwdriver-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/screwdriver.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-bold.imageset/scribble-loop-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/scribble-loop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-bold.imageset/scribble-loop-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/scribble-loop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-bold.imageset/scribble-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/scribble.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-bold.imageset/scribble-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/scribble.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-bold.imageset/scroll-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/scroll.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-bold.imageset/scroll-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/scroll.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-bold.imageset/seal-check-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/seal-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-bold.imageset/seal-check-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/seal-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-bold.imageset/seal-percent-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/seal-percent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-bold.imageset/seal-percent-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/seal-percent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-bold.imageset/seal-question-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/seal-question.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-bold.imageset/seal-question-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/seal-question.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-bold.imageset/seal-warning-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/seal-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-bold.imageset/seal-warning-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/seal-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-bold.imageset/seal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/seal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-bold.imageset/seal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/seal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-bold.imageset/seat-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/seat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-bold.imageset/seat-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/seat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-bold.imageset/seatbelt-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/seatbelt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-bold.imageset/seatbelt-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/seatbelt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-bold.imageset/security-camera-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/security-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-bold.imageset/security-camera-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/security-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-bold.imageset/selection-all-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/selection-all.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-bold.imageset/selection-all-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/selection-all.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-bold.imageset/selection-background-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/selection-background.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-bold.imageset/selection-background-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/selection-background.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-bold.imageset/selection-foreground-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/selection-foreground.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-bold.imageset/selection-foreground-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/selection-foreground.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-bold.imageset/selection-inverse-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/selection-inverse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-bold.imageset/selection-inverse-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/selection-inverse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-bold.imageset/selection-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/selection-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-bold.imageset/selection-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/selection-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-bold.imageset/selection-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/selection-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-bold.imageset/selection-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/selection-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-bold.imageset/selection-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/selection.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-bold.imageset/selection-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/selection.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-bold.imageset/shapes-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shapes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-bold.imageset/shapes-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shapes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-bold.imageset/share-fat-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/share-fat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-bold.imageset/share-fat-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/share-fat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-bold.imageset/share-network-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/share-network.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-bold.imageset/share-network-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/share-network.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-bold.imageset/share-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/share.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-bold.imageset/share-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/share.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-bold.imageset/shield-check-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-bold.imageset/shield-check-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-bold.imageset/shield-checkered-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield-checkered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-bold.imageset/shield-checkered-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield-checkered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-bold.imageset/shield-chevron-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield-chevron.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-bold.imageset/shield-chevron-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield-chevron.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-bold.imageset/shield-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-bold.imageset/shield-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-bold.imageset/shield-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-bold.imageset/shield-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-bold.imageset/shield-star-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-bold.imageset/shield-star-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-bold.imageset/shield-warning-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-bold.imageset/shield-warning-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-bold.imageset/shield-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-bold.imageset/shield-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shield.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-bold.imageset/shipping-container-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shipping-container.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-bold.imageset/shipping-container-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shipping-container.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-bold.imageset/shirt-folded-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shirt-folded.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-bold.imageset/shirt-folded-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shirt-folded.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-bold.imageset/shooting-star-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shooting-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-bold.imageset/shooting-star-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shooting-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-bold.imageset/shopping-bag-open-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shopping-bag-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-bold.imageset/shopping-bag-open-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shopping-bag-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-bold.imageset/shopping-bag-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shopping-bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-bold.imageset/shopping-bag-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shopping-bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-bold.imageset/shopping-cart-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shopping-cart-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-bold.imageset/shopping-cart-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shopping-cart-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-bold.imageset/shopping-cart-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shopping-cart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-bold.imageset/shopping-cart-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shopping-cart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-bold.imageset/shovel-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shovel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-bold.imageset/shovel-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shovel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-bold.imageset/shower-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-bold.imageset/shower-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-bold.imageset/shrimp-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shrimp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-bold.imageset/shrimp-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shrimp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-bold.imageset/shuffle-angular-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shuffle-angular.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-bold.imageset/shuffle-angular-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shuffle-angular.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-bold.imageset/shuffle-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shuffle-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-bold.imageset/shuffle-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shuffle-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-bold.imageset/shuffle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/shuffle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-bold.imageset/shuffle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/shuffle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-bold.imageset/sidebar-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sidebar-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-bold.imageset/sidebar-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sidebar-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-bold.imageset/sidebar-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sidebar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-bold.imageset/sidebar-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sidebar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-bold.imageset/sigma-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sigma.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-bold.imageset/sigma-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sigma.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-bold.imageset/sign-in-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sign-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-bold.imageset/sign-in-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sign-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-bold.imageset/sign-out-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sign-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-bold.imageset/sign-out-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sign-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-bold.imageset/signature-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/signature.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-bold.imageset/signature-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/signature.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-bold.imageset/signpost-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/signpost.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-bold.imageset/signpost-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/signpost.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-bold.imageset/sim-card-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sim-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-bold.imageset/sim-card-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sim-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-bold.imageset/siren-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/siren.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-bold.imageset/siren-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/siren.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-bold.imageset/sketch-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sketch-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-bold.imageset/sketch-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sketch-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-bold.imageset/skip-back-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/skip-back-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-bold.imageset/skip-back-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/skip-back-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-bold.imageset/skip-back-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/skip-back.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-bold.imageset/skip-back-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/skip-back.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-bold.imageset/skip-forward-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/skip-forward-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-bold.imageset/skip-forward-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/skip-forward-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-bold.imageset/skip-forward-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/skip-forward.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-bold.imageset/skip-forward-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/skip-forward.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-bold.imageset/skull-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/skull.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-bold.imageset/skull-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/skull.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-bold.imageset/skype-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/skype-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-bold.imageset/skype-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/skype-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-bold.imageset/slack-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/slack-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-bold.imageset/slack-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/slack-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-bold.imageset/sliders-horizontal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sliders-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-bold.imageset/sliders-horizontal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sliders-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-bold.imageset/sliders-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sliders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-bold.imageset/sliders-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sliders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-bold.imageset/slideshow-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/slideshow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-bold.imageset/slideshow-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/slideshow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-bold.imageset/smiley-angry-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-angry.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-bold.imageset/smiley-angry-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-angry.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-bold.imageset/smiley-blank-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-bold.imageset/smiley-blank-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-bold.imageset/smiley-meh-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-meh.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-bold.imageset/smiley-meh-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-meh.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-bold.imageset/smiley-melting-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-melting.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-bold.imageset/smiley-melting-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-melting.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-bold.imageset/smiley-nervous-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-nervous.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-bold.imageset/smiley-nervous-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-nervous.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-bold.imageset/smiley-sad-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-sad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-bold.imageset/smiley-sad-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-sad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-bold.imageset/smiley-sticker-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-sticker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-bold.imageset/smiley-sticker-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-sticker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-bold.imageset/smiley-wink-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-wink.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-bold.imageset/smiley-wink-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-wink.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-bold.imageset/smiley-x-eyes-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-x-eyes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-bold.imageset/smiley-x-eyes-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley-x-eyes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-bold.imageset/smiley-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-bold.imageset/smiley-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-bold.imageset/snapchat-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/snapchat-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-bold.imageset/snapchat-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/snapchat-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-bold.imageset/sneaker-move-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sneaker-move.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-bold.imageset/sneaker-move-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sneaker-move.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-bold.imageset/sneaker-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sneaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-bold.imageset/sneaker-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sneaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-bold.imageset/snowflake-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/snowflake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-bold.imageset/snowflake-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/snowflake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-bold.imageset/soccer-ball-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/soccer-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-bold.imageset/soccer-ball-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/soccer-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-bold.imageset/sock-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-bold.imageset/sock-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-bold.imageset/solar-panel-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/solar-panel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-bold.imageset/solar-panel-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/solar-panel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-bold.imageset/solar-roof-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/solar-roof.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-bold.imageset/solar-roof-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/solar-roof.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-bold.imageset/sort-ascending-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sort-ascending.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-bold.imageset/sort-ascending-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sort-ascending.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-bold.imageset/sort-descending-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sort-descending.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-bold.imageset/sort-descending-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sort-descending.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-bold.imageset/soundcloud-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/soundcloud-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-bold.imageset/soundcloud-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/soundcloud-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-bold.imageset/spade-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/spade.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-bold.imageset/spade-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/spade.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-bold.imageset/sparkle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sparkle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-bold.imageset/sparkle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sparkle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-bold.imageset/speaker-hifi-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-hifi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-bold.imageset/speaker-hifi-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-hifi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-bold.imageset/speaker-high-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-bold.imageset/speaker-high-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-bold.imageset/speaker-low-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-bold.imageset/speaker-low-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-bold.imageset/speaker-none-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-bold.imageset/speaker-none-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-bold.imageset/speaker-simple-high-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-simple-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-bold.imageset/speaker-simple-high-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-simple-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-bold.imageset/speaker-simple-low-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-simple-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-bold.imageset/speaker-simple-low-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-simple-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-bold.imageset/speaker-simple-none-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-simple-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-bold.imageset/speaker-simple-none-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-simple-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-bold.imageset/speaker-simple-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-bold.imageset/speaker-simple-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-bold.imageset/speaker-simple-x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-bold.imageset/speaker-simple-x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-bold.imageset/speaker-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-bold.imageset/speaker-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-bold.imageset/speaker-x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-bold.imageset/speaker-x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/speaker-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-bold.imageset/speedometer-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/speedometer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-bold.imageset/speedometer-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/speedometer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-bold.imageset/sphere-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sphere.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-bold.imageset/sphere-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sphere.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-bold.imageset/spinner-ball-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/spinner-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-bold.imageset/spinner-ball-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/spinner-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-bold.imageset/spinner-gap-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/spinner-gap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-bold.imageset/spinner-gap-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/spinner-gap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-bold.imageset/spinner-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/spinner.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-bold.imageset/spinner-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/spinner.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-bold.imageset/spiral-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/spiral.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-bold.imageset/spiral-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/spiral.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-bold.imageset/split-horizontal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/split-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-bold.imageset/split-horizontal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/split-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-bold.imageset/split-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/split-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-bold.imageset/split-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/split-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-bold.imageset/spotify-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/spotify-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-bold.imageset/spotify-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/spotify-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-bold.imageset/spray-bottle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/spray-bottle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-bold.imageset/spray-bottle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/spray-bottle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-bold.imageset/square-half-bottom-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/square-half-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-bold.imageset/square-half-bottom-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/square-half-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bold.imageset/square-half-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/square-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bold.imageset/square-half-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/square-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-bold.imageset/square-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/square-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-bold.imageset/square-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/square-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-bold.imageset/square-split-horizontal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/square-split-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-bold.imageset/square-split-horizontal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/square-split-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-bold.imageset/square-split-vertical-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/square-split-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-bold.imageset/square-split-vertical-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/square-split-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-bold.imageset/square-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-bold.imageset/square-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-bold.imageset/squares-four-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/squares-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-bold.imageset/squares-four-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/squares-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-bold.imageset/stack-minus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/stack-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-bold.imageset/stack-minus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/stack-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-bold.imageset/stack-overflow-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/stack-overflow-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-bold.imageset/stack-overflow-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/stack-overflow-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-bold.imageset/stack-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/stack-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-bold.imageset/stack-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/stack-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-bold.imageset/stack-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/stack-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-bold.imageset/stack-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/stack-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-bold.imageset/stack-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/stack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-bold.imageset/stack-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/stack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-bold.imageset/stairs-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/stairs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-bold.imageset/stairs-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/stairs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-bold.imageset/stamp-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/stamp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-bold.imageset/stamp-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/stamp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-bold.imageset/standard-definition-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/standard-definition.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-bold.imageset/standard-definition-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/standard-definition.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-bold.imageset/star-and-crescent-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/star-and-crescent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-bold.imageset/star-and-crescent-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/star-and-crescent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-bold.imageset/star-four-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/star-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-bold.imageset/star-four-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/star-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-bold.imageset/star-half-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/star-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-bold.imageset/star-half-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/star-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-bold.imageset/star-of-david-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/star-of-david.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-bold.imageset/star-of-david-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/star-of-david.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-bold.imageset/star-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-bold.imageset/star-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-bold.imageset/steam-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/steam-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-bold.imageset/steam-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/steam-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-bold.imageset/steering-wheel-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/steering-wheel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-bold.imageset/steering-wheel-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/steering-wheel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-bold.imageset/steps-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/steps.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-bold.imageset/steps-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/steps.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-bold.imageset/stethoscope-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/stethoscope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-bold.imageset/stethoscope-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/stethoscope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-bold.imageset/sticker-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sticker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-bold.imageset/sticker-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sticker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-bold.imageset/stool-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/stool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-bold.imageset/stool-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/stool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-bold.imageset/stop-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/stop-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-bold.imageset/stop-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/stop-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-bold.imageset/stop-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/stop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-bold.imageset/stop-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/stop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-bold.imageset/storefront-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/storefront.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-bold.imageset/storefront-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/storefront.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-bold.imageset/strategy-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/strategy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-bold.imageset/strategy-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/strategy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-bold.imageset/stripe-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/stripe-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-bold.imageset/stripe-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/stripe-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-bold.imageset/student-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/student.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-bold.imageset/student-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/student.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-bold.imageset/subset-of-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/subset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-bold.imageset/subset-of-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/subset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-bold.imageset/subset-proper-of-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/subset-proper-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-bold.imageset/subset-proper-of-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/subset-proper-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-bold.imageset/subtitles-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/subtitles-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-bold.imageset/subtitles-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/subtitles-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-bold.imageset/subtitles-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/subtitles.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-bold.imageset/subtitles-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/subtitles.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-bold.imageset/subtract-square-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/subtract-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-bold.imageset/subtract-square-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/subtract-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-bold.imageset/subtract-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/subtract.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-bold.imageset/subtract-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/subtract.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-bold.imageset/subway-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/subway.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-bold.imageset/subway-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/subway.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-bold.imageset/suitcase-rolling-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/suitcase-rolling.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-bold.imageset/suitcase-rolling-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/suitcase-rolling.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-bold.imageset/suitcase-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/suitcase-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-bold.imageset/suitcase-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/suitcase-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-bold.imageset/suitcase-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/suitcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-bold.imageset/suitcase-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/suitcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-bold.imageset/sun-dim-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sun-dim.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-bold.imageset/sun-dim-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sun-dim.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-bold.imageset/sun-horizon-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sun-horizon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-bold.imageset/sun-horizon-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sun-horizon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-bold.imageset/sun-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sun.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-bold.imageset/sun-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sun.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-bold.imageset/sunglasses-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sunglasses.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-bold.imageset/sunglasses-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sunglasses.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-bold.imageset/superset-of-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/superset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-bold.imageset/superset-of-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/superset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-bold.imageset/superset-proper-of-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/superset-proper-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-bold.imageset/superset-proper-of-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/superset-proper-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-bold.imageset/swap-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/swap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-bold.imageset/swap-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/swap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-bold.imageset/swatches-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/swatches.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-bold.imageset/swatches-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/swatches.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-bold.imageset/swimming-pool-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/swimming-pool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-bold.imageset/swimming-pool-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/swimming-pool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-bold.imageset/sword-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/sword.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-bold.imageset/sword-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/sword.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-bold.imageset/synagogue-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/synagogue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-bold.imageset/synagogue-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/synagogue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-bold.imageset/syringe-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/syringe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-bold.imageset/syringe-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/syringe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-bold.imageset/t-shirt-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/t-shirt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-bold.imageset/t-shirt-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/t-shirt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-bold.imageset/table-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/table.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-bold.imageset/table-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/table.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-bold.imageset/tabs-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tabs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-bold.imageset/tabs-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tabs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-bold.imageset/tag-chevron-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tag-chevron.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-bold.imageset/tag-chevron-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tag-chevron.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-bold.imageset/tag-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-bold.imageset/tag-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-bold.imageset/tag-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-bold.imageset/tag-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-bold.imageset/target-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/target.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-bold.imageset/target-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/target.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-bold.imageset/taxi-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/taxi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-bold.imageset/taxi-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/taxi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-bold.imageset/tea-bag-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tea-bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-bold.imageset/tea-bag-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tea-bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-bold.imageset/telegram-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/telegram-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-bold.imageset/telegram-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/telegram-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-bold.imageset/television-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/television-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-bold.imageset/television-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/television-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-bold.imageset/television-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/television.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-bold.imageset/television-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/television.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-bold.imageset/tennis-ball-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tennis-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-bold.imageset/tennis-ball-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tennis-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-bold.imageset/tent-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-bold.imageset/tent-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-bold.imageset/terminal-window-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/terminal-window.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-bold.imageset/terminal-window-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/terminal-window.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-bold.imageset/terminal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/terminal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-bold.imageset/terminal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/terminal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-bold.imageset/test-tube-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/test-tube.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-bold.imageset/test-tube-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/test-tube.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-bold.imageset/text-a-underline-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-a-underline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-bold.imageset/text-a-underline-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-a-underline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-bold.imageset/text-aa-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-aa.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-bold.imageset/text-aa-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-aa.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-bold.imageset/text-align-center-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-align-center.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-bold.imageset/text-align-center-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-align-center.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-bold.imageset/text-align-justify-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-align-justify.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-bold.imageset/text-align-justify-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-align-justify.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-bold.imageset/text-align-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-align-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-bold.imageset/text-align-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-align-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-bold.imageset/text-align-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-align-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-bold.imageset/text-align-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-align-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-bold.imageset/text-b-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-b.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-bold.imageset/text-b-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-b.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-bold.imageset/text-columns-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-columns.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-bold.imageset/text-columns-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-columns.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-bold.imageset/text-h-five-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-h-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-bold.imageset/text-h-five-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-h-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-bold.imageset/text-h-four-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-h-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-bold.imageset/text-h-four-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-h-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-bold.imageset/text-h-one-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-h-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-bold.imageset/text-h-one-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-h-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-bold.imageset/text-h-six-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-h-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-bold.imageset/text-h-six-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-h-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-bold.imageset/text-h-three-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-h-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-bold.imageset/text-h-three-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-h-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-bold.imageset/text-h-two-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-h-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-bold.imageset/text-h-two-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-h-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-bold.imageset/text-h-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-h.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-bold.imageset/text-h-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-h.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-bold.imageset/text-indent-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-indent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-bold.imageset/text-indent-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-indent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-bold.imageset/text-italic-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-italic.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-bold.imageset/text-italic-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-italic.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-bold.imageset/text-outdent-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-outdent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-bold.imageset/text-outdent-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-outdent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-bold.imageset/text-strikethrough-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-strikethrough.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-bold.imageset/text-strikethrough-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-strikethrough.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-bold.imageset/text-subscript-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-subscript.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-bold.imageset/text-subscript-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-subscript.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-bold.imageset/text-superscript-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-superscript.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-bold.imageset/text-superscript-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-superscript.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-bold.imageset/text-t-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-t-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-bold.imageset/text-t-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-t-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-bold.imageset/text-t-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-t.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-bold.imageset/text-t-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-t.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-bold.imageset/text-underline-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-underline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-bold.imageset/text-underline-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/text-underline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-bold.imageset/textbox-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/textbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-bold.imageset/textbox-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/textbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-bold.imageset/thermometer-cold-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/thermometer-cold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-bold.imageset/thermometer-cold-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/thermometer-cold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-bold.imageset/thermometer-hot-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/thermometer-hot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-bold.imageset/thermometer-hot-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/thermometer-hot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-bold.imageset/thermometer-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/thermometer-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-bold.imageset/thermometer-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/thermometer-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-bold.imageset/thermometer-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/thermometer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-bold.imageset/thermometer-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/thermometer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-bold.imageset/threads-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/threads-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-bold.imageset/threads-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/threads-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-bold.imageset/three-d-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/three-d.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-bold.imageset/three-d-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/three-d.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-bold.imageset/thumbs-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/thumbs-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-bold.imageset/thumbs-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/thumbs-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-bold.imageset/thumbs-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/thumbs-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-bold.imageset/thumbs-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/thumbs-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-bold.imageset/ticket-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/ticket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-bold.imageset/ticket-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/ticket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-bold.imageset/tidal-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tidal-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-bold.imageset/tidal-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tidal-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-bold.imageset/tiktok-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tiktok-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-bold.imageset/tiktok-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tiktok-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-bold.imageset/tilde-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tilde.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-bold.imageset/tilde-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tilde.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-bold.imageset/timer-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/timer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-bold.imageset/timer-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/timer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-bold.imageset/tip-jar-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tip-jar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-bold.imageset/tip-jar-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tip-jar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-bold.imageset/tipi-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tipi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-bold.imageset/tipi-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tipi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-bold.imageset/tire-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-bold.imageset/tire-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-bold.imageset/toggle-left-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/toggle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-bold.imageset/toggle-left-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/toggle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-bold.imageset/toggle-right-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/toggle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-bold.imageset/toggle-right-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/toggle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-bold.imageset/toilet-paper-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/toilet-paper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-bold.imageset/toilet-paper-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/toilet-paper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-bold.imageset/toilet-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/toilet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-bold.imageset/toilet-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/toilet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-bold.imageset/toolbox-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/toolbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-bold.imageset/toolbox-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/toolbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-bold.imageset/tooth-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-bold.imageset/tooth-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-bold.imageset/tornado-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tornado.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-bold.imageset/tornado-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tornado.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-bold.imageset/tote-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tote-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-bold.imageset/tote-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tote-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-bold.imageset/tote-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tote.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-bold.imageset/tote-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tote.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-bold.imageset/towel-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/towel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-bold.imageset/towel-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/towel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-bold.imageset/tractor-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tractor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-bold.imageset/tractor-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tractor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-bold.imageset/trademark-registered-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/trademark-registered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-bold.imageset/trademark-registered-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/trademark-registered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-bold.imageset/trademark-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/trademark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-bold.imageset/trademark-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/trademark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-bold.imageset/traffic-cone-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/traffic-cone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-bold.imageset/traffic-cone-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/traffic-cone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-bold.imageset/traffic-sign-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/traffic-sign.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-bold.imageset/traffic-sign-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/traffic-sign.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-bold.imageset/traffic-signal-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/traffic-signal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-bold.imageset/traffic-signal-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/traffic-signal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-bold.imageset/train-regional-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/train-regional.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-bold.imageset/train-regional-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/train-regional.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-bold.imageset/train-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/train-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-bold.imageset/train-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/train-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-bold.imageset/train-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/train.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-bold.imageset/train-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/train.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-bold.imageset/tram-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-bold.imageset/tram-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-bold.imageset/translate-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/translate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-bold.imageset/translate-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/translate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-bold.imageset/trash-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/trash-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-bold.imageset/trash-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/trash-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-bold.imageset/trash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/trash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-bold.imageset/trash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/trash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-bold.imageset/tray-arrow-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tray-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down-bold.imageset/tray-arrow-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tray-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-bold.imageset/tray-arrow-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tray-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-bold.imageset/tray-arrow-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tray-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-bold.imageset/tray-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tray.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-bold.imageset/tray-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tray.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-bold.imageset/treasure-chest-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/treasure-chest.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-bold.imageset/treasure-chest-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/treasure-chest.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-bold.imageset/tree-evergreen-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tree-evergreen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-bold.imageset/tree-evergreen-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tree-evergreen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-bold.imageset/tree-palm-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tree-palm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-bold.imageset/tree-palm-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tree-palm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-bold.imageset/tree-structure-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tree-structure.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-bold.imageset/tree-structure-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tree-structure.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-bold.imageset/tree-view-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tree-view.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-bold.imageset/tree-view-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tree-view.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-bold.imageset/tree-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tree.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-bold.imageset/tree-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tree.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-bold.imageset/trend-down-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/trend-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-bold.imageset/trend-down-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/trend-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-bold.imageset/trend-up-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/trend-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-bold.imageset/trend-up-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/trend-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-bold.imageset/triangle-dashed-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/triangle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-bold.imageset/triangle-dashed-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/triangle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-bold.imageset/triangle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/triangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-bold.imageset/triangle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/triangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-bold.imageset/trolley-suitcase-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/trolley-suitcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-bold.imageset/trolley-suitcase-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/trolley-suitcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-bold.imageset/trolley-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/trolley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-bold.imageset/trolley-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/trolley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-bold.imageset/trophy-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/trophy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-bold.imageset/trophy-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/trophy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-bold.imageset/truck-trailer-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/truck-trailer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-bold.imageset/truck-trailer-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/truck-trailer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-bold.imageset/truck-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/truck.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-bold.imageset/truck-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/truck.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-bold.imageset/tumblr-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/tumblr-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-bold.imageset/tumblr-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/tumblr-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-bold.imageset/twitch-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/twitch-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-bold.imageset/twitch-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/twitch-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-bold.imageset/twitter-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/twitter-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-bold.imageset/twitter-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/twitter-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-bold.imageset/umbrella-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/umbrella-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-bold.imageset/umbrella-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/umbrella-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-bold.imageset/umbrella-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/umbrella.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-bold.imageset/umbrella-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/umbrella.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-bold.imageset/union-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/union.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-bold.imageset/union-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/union.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-bold.imageset/unite-square-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/unite-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-bold.imageset/unite-square-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/unite-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-bold.imageset/unite-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/unite.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-bold.imageset/unite-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/unite.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-bold.imageset/upload-simple-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/upload-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-bold.imageset/upload-simple-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/upload-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-bold.imageset/upload-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/upload.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-bold.imageset/upload-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/upload.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-bold.imageset/usb-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/usb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-bold.imageset/usb-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/usb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-bold.imageset/user-check-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-bold.imageset/user-check-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-bold.imageset/user-circle-check-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-circle-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-bold.imageset/user-circle-check-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-circle-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-bold.imageset/user-circle-dashed-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-circle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-bold.imageset/user-circle-dashed-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-circle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-bold.imageset/user-circle-gear-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-circle-gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-bold.imageset/user-circle-gear-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-circle-gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-bold.imageset/user-circle-minus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-circle-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-bold.imageset/user-circle-minus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-circle-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-bold.imageset/user-circle-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-circle-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-bold.imageset/user-circle-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-circle-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-bold.imageset/user-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-bold.imageset/user-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-bold.imageset/user-focus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-focus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-bold.imageset/user-focus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-focus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-bold.imageset/user-gear-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-bold.imageset/user-gear-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-bold.imageset/user-list-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-bold.imageset/user-list-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-bold.imageset/user-minus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-bold.imageset/user-minus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-bold.imageset/user-plus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-bold.imageset/user-plus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-bold.imageset/user-rectangle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-rectangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-bold.imageset/user-rectangle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-rectangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-bold.imageset/user-sound-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-sound.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-bold.imageset/user-sound-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-sound.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-bold.imageset/user-square-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-bold.imageset/user-square-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-bold.imageset/user-switch-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-switch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-bold.imageset/user-switch-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user-switch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-bold.imageset/user-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-bold.imageset/user-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-bold.imageset/users-four-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/users-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-bold.imageset/users-four-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/users-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-bold.imageset/users-three-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/users-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-bold.imageset/users-three-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/users-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-bold.imageset/users-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/users.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-bold.imageset/users-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/users.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-bold.imageset/van-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/van.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-bold.imageset/van-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/van.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-bold.imageset/vault-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/vault.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-bold.imageset/vault-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/vault.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-bold.imageset/vector-three-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/vector-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-bold.imageset/vector-three-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/vector-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-bold.imageset/vector-two-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/vector-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-bold.imageset/vector-two-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/vector-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-bold.imageset/vibrate-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/vibrate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-bold.imageset/vibrate-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/vibrate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-bold.imageset/video-camera-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/video-camera-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-bold.imageset/video-camera-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/video-camera-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-bold.imageset/video-camera-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/video-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-bold.imageset/video-camera-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/video-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-bold.imageset/video-conference-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/video-conference.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-bold.imageset/video-conference-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/video-conference.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-bold.imageset/video-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/video.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-bold.imageset/video-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/video.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-bold.imageset/vignette-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/vignette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-bold.imageset/vignette-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/vignette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-bold.imageset/vinyl-record-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/vinyl-record.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-bold.imageset/vinyl-record-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/vinyl-record.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-bold.imageset/virtual-reality-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/virtual-reality.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-bold.imageset/virtual-reality-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/virtual-reality.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-bold.imageset/virus-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/virus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-bold.imageset/virus-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/virus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-bold.imageset/visor-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/visor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-bold.imageset/visor-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/visor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-bold.imageset/voicemail-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/voicemail.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-bold.imageset/voicemail-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/voicemail.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-bold.imageset/volleyball-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/volleyball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-bold.imageset/volleyball-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/volleyball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-bold.imageset/wall-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wall.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-bold.imageset/wall-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wall.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-bold.imageset/wallet-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wallet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-bold.imageset/wallet-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wallet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-bold.imageset/warehouse-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/warehouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-bold.imageset/warehouse-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/warehouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-bold.imageset/warning-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/warning-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-bold.imageset/warning-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/warning-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-bold.imageset/warning-diamond-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/warning-diamond.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-bold.imageset/warning-diamond-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/warning-diamond.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-bold.imageset/warning-octagon-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/warning-octagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-bold.imageset/warning-octagon-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/warning-octagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-bold.imageset/warning-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-bold.imageset/warning-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-bold.imageset/washing-machine-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/washing-machine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-bold.imageset/washing-machine-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/washing-machine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-bold.imageset/watch-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/watch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-bold.imageset/watch-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/watch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-bold.imageset/wave-sawtooth-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wave-sawtooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-bold.imageset/wave-sawtooth-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wave-sawtooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-bold.imageset/wave-sine-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wave-sine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-bold.imageset/wave-sine-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wave-sine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-bold.imageset/wave-square-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wave-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-bold.imageset/wave-square-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wave-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-bold.imageset/wave-triangle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wave-triangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-bold.imageset/wave-triangle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wave-triangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-bold.imageset/waveform-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/waveform-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-bold.imageset/waveform-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/waveform-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-bold.imageset/waveform-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/waveform.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-bold.imageset/waveform-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/waveform.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-bold.imageset/waves-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/waves.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-bold.imageset/waves-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/waves.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-bold.imageset/webcam-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/webcam-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-bold.imageset/webcam-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/webcam-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-bold.imageset/webcam-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/webcam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-bold.imageset/webcam-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/webcam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-bold.imageset/webhooks-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/webhooks-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-bold.imageset/webhooks-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/webhooks-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-bold.imageset/wechat-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wechat-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-bold.imageset/wechat-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wechat-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-bold.imageset/whatsapp-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/whatsapp-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-bold.imageset/whatsapp-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/whatsapp-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-bold.imageset/wheelchair-motion-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wheelchair-motion.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-bold.imageset/wheelchair-motion-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wheelchair-motion.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-bold.imageset/wheelchair-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wheelchair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-bold.imageset/wheelchair-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wheelchair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-bold.imageset/wifi-high-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wifi-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-bold.imageset/wifi-high-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wifi-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-bold.imageset/wifi-low-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wifi-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-bold.imageset/wifi-low-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wifi-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-bold.imageset/wifi-medium-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wifi-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-bold.imageset/wifi-medium-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wifi-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-bold.imageset/wifi-none-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wifi-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-bold.imageset/wifi-none-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wifi-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-bold.imageset/wifi-slash-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wifi-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-bold.imageset/wifi-slash-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wifi-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-bold.imageset/wifi-x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wifi-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-bold.imageset/wifi-x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wifi-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-bold.imageset/wind-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wind.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-bold.imageset/wind-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wind.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-bold.imageset/windmill-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/windmill.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-bold.imageset/windmill-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/windmill.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-bold.imageset/windows-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/windows-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-bold.imageset/windows-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/windows-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-bold.imageset/wine-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-bold.imageset/wine-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-bold.imageset/wrench-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/wrench.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-bold.imageset/wrench-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/wrench.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-bold.imageset/x-circle-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/x-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-bold.imageset/x-circle-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/x-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-bold.imageset/x-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/x-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-bold.imageset/x-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/x-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-bold.imageset/x-square-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/x-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-bold.imageset/x-square-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/x-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-bold.imageset/x-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-bold.imageset/x-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-bold.imageset/yarn-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/yarn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-bold.imageset/yarn-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/yarn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-bold.imageset/yin-yang-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/yin-yang.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-bold.imageset/yin-yang-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/yin-yang.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-bold.imageset/youtube-logo-bold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/bold/youtube-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-bold.imageset/youtube-logo-bold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/bold/youtube-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-duotone.imageset/acorn-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/acorn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-duotone.imageset/acorn-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/acorn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-duotone.imageset/address-book-tabs-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/address-book-tabs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-duotone.imageset/address-book-tabs-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/address-book-tabs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-duotone.imageset/address-book-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/address-book.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-duotone.imageset/address-book-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/address-book.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-duotone.imageset/air-traffic-control-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/air-traffic-control.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-duotone.imageset/air-traffic-control-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/air-traffic-control.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-duotone.imageset/airplane-in-flight-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/airplane-in-flight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-duotone.imageset/airplane-in-flight-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/airplane-in-flight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-duotone.imageset/airplane-landing-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/airplane-landing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-duotone.imageset/airplane-landing-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/airplane-landing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-duotone.imageset/airplane-takeoff-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/airplane-takeoff.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-duotone.imageset/airplane-takeoff-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/airplane-takeoff.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-duotone.imageset/airplane-taxiing-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/airplane-taxiing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-duotone.imageset/airplane-taxiing-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/airplane-taxiing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-duotone.imageset/airplane-tilt-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/airplane-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-duotone.imageset/airplane-tilt-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/airplane-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-duotone.imageset/airplane-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/airplane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-duotone.imageset/airplane-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/airplane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-duotone.imageset/airplay-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/airplay.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-duotone.imageset/airplay-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/airplay.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-duotone.imageset/alarm-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/alarm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-duotone.imageset/alarm-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/alarm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-duotone.imageset/alien-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/alien.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-duotone.imageset/alien-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/alien.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-duotone.imageset/align-bottom-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-bottom-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-duotone.imageset/align-bottom-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-bottom-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-duotone.imageset/align-bottom-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-duotone.imageset/align-bottom-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-duotone.imageset/align-center-horizontal-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-center-horizontal-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-duotone.imageset/align-center-horizontal-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-center-horizontal-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-duotone.imageset/align-center-horizontal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-center-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-duotone.imageset/align-center-horizontal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-center-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-duotone.imageset/align-center-vertical-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-center-vertical-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-duotone.imageset/align-center-vertical-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-center-vertical-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-duotone.imageset/align-center-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-center-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-duotone.imageset/align-center-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-center-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-duotone.imageset/align-left-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-left-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-duotone.imageset/align-left-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-left-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-duotone.imageset/align-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-duotone.imageset/align-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-duotone.imageset/align-right-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-right-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-duotone.imageset/align-right-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-right-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-duotone.imageset/align-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-duotone.imageset/align-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-duotone.imageset/align-top-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-top-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-duotone.imageset/align-top-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-top-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-duotone.imageset/align-top-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-top.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-duotone.imageset/align-top-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/align-top.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-duotone.imageset/amazon-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/amazon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-duotone.imageset/amazon-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/amazon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-duotone.imageset/ambulance-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ambulance.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-duotone.imageset/ambulance-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ambulance.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-duotone.imageset/anchor-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/anchor-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-duotone.imageset/anchor-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/anchor-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-duotone.imageset/anchor-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/anchor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-duotone.imageset/anchor-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/anchor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-duotone.imageset/android-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/android-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-duotone.imageset/android-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/android-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-duotone.imageset/angle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/angle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-duotone.imageset/angle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/angle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-duotone.imageset/angular-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/angular-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-duotone.imageset/angular-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/angular-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-duotone.imageset/aperture-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/aperture.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-duotone.imageset/aperture-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/aperture.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-duotone.imageset/app-store-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/app-store-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-duotone.imageset/app-store-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/app-store-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-duotone.imageset/app-window-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/app-window.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-duotone.imageset/app-window-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/app-window.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-duotone.imageset/apple-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/apple-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-duotone.imageset/apple-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/apple-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-duotone.imageset/apple-podcasts-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/apple-podcasts-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-duotone.imageset/apple-podcasts-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/apple-podcasts-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-duotone.imageset/approximate-equals-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/approximate-equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-duotone.imageset/approximate-equals-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/approximate-equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-duotone.imageset/archive-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/archive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-duotone.imageset/archive-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/archive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-duotone.imageset/armchair-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/armchair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-duotone.imageset/armchair-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/armchair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-duotone.imageset/arrow-arc-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-arc-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-duotone.imageset/arrow-arc-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-arc-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-duotone.imageset/arrow-arc-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-arc-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-duotone.imageset/arrow-arc-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-arc-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-duotone.imageset/arrow-bend-double-up-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-double-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-duotone.imageset/arrow-bend-double-up-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-double-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-duotone.imageset/arrow-bend-double-up-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-double-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-duotone.imageset/arrow-bend-double-up-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-double-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-duotone.imageset/arrow-bend-down-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-duotone.imageset/arrow-bend-down-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-duotone.imageset/arrow-bend-down-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-duotone.imageset/arrow-bend-down-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-duotone.imageset/arrow-bend-left-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-duotone.imageset/arrow-bend-left-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-duotone.imageset/arrow-bend-left-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-duotone.imageset/arrow-bend-left-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-duotone.imageset/arrow-bend-right-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-duotone.imageset/arrow-bend-right-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-duotone.imageset/arrow-bend-right-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-duotone.imageset/arrow-bend-right-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-duotone.imageset/arrow-bend-up-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-duotone.imageset/arrow-bend-up-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-duotone.imageset/arrow-bend-up-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-duotone.imageset/arrow-bend-up-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-bend-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-duotone.imageset/arrow-circle-down-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-duotone.imageset/arrow-circle-down-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-duotone.imageset/arrow-circle-down-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-duotone.imageset/arrow-circle-down-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-duotone.imageset/arrow-circle-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-duotone.imageset/arrow-circle-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-duotone.imageset/arrow-circle-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-duotone.imageset/arrow-circle-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-duotone.imageset/arrow-circle-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-duotone.imageset/arrow-circle-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-duotone.imageset/arrow-circle-up-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-duotone.imageset/arrow-circle-up-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-duotone.imageset/arrow-circle-up-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-duotone.imageset/arrow-circle-up-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-duotone.imageset/arrow-circle-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-duotone.imageset/arrow-circle-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-circle-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-duotone.imageset/arrow-clockwise-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-duotone.imageset/arrow-clockwise-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-duotone.imageset/arrow-counter-clockwise-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-duotone.imageset/arrow-counter-clockwise-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-duotone.imageset/arrow-down-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-duotone.imageset/arrow-down-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-duotone.imageset/arrow-down-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-duotone.imageset/arrow-down-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-duotone.imageset/arrow-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-duotone.imageset/arrow-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-duotone.imageset/arrow-elbow-down-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-duotone.imageset/arrow-elbow-down-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-duotone.imageset/arrow-elbow-down-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-duotone.imageset/arrow-elbow-down-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-duotone.imageset/arrow-elbow-left-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-duotone.imageset/arrow-elbow-left-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-duotone.imageset/arrow-elbow-left-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-duotone.imageset/arrow-elbow-left-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-duotone.imageset/arrow-elbow-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-duotone.imageset/arrow-elbow-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-duotone.imageset/arrow-elbow-right-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-duotone.imageset/arrow-elbow-right-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-duotone.imageset/arrow-elbow-right-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-duotone.imageset/arrow-elbow-right-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-duotone.imageset/arrow-elbow-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-duotone.imageset/arrow-elbow-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-duotone.imageset/arrow-elbow-up-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-duotone.imageset/arrow-elbow-up-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-duotone.imageset/arrow-elbow-up-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-duotone.imageset/arrow-elbow-up-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-elbow-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-duotone.imageset/arrow-fat-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-duotone.imageset/arrow-fat-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-duotone.imageset/arrow-fat-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-duotone.imageset/arrow-fat-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-duotone.imageset/arrow-fat-line-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-duotone.imageset/arrow-fat-line-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-duotone.imageset/arrow-fat-line-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-duotone.imageset/arrow-fat-line-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-duotone.imageset/arrow-fat-line-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-duotone.imageset/arrow-fat-line-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-duotone.imageset/arrow-fat-line-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-duotone.imageset/arrow-fat-line-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-duotone.imageset/arrow-fat-lines-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-lines-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-duotone.imageset/arrow-fat-lines-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-lines-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-duotone.imageset/arrow-fat-lines-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-lines-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-duotone.imageset/arrow-fat-lines-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-lines-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-duotone.imageset/arrow-fat-lines-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-lines-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-duotone.imageset/arrow-fat-lines-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-lines-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-duotone.imageset/arrow-fat-lines-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-lines-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-duotone.imageset/arrow-fat-lines-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-lines-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-duotone.imageset/arrow-fat-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-duotone.imageset/arrow-fat-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-duotone.imageset/arrow-fat-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-duotone.imageset/arrow-fat-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-fat-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-duotone.imageset/arrow-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-duotone.imageset/arrow-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-duotone.imageset/arrow-line-down-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-duotone.imageset/arrow-line-down-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-duotone.imageset/arrow-line-down-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-duotone.imageset/arrow-line-down-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-duotone.imageset/arrow-line-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-duotone.imageset/arrow-line-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-duotone.imageset/arrow-line-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-duotone.imageset/arrow-line-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-duotone.imageset/arrow-line-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-duotone.imageset/arrow-line-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-duotone.imageset/arrow-line-up-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-duotone.imageset/arrow-line-up-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-duotone.imageset/arrow-line-up-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-duotone.imageset/arrow-line-up-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-duotone.imageset/arrow-line-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-duotone.imageset/arrow-line-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-duotone.imageset/arrow-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-duotone.imageset/arrow-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-duotone.imageset/arrow-square-down-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-duotone.imageset/arrow-square-down-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-duotone.imageset/arrow-square-down-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-duotone.imageset/arrow-square-down-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-duotone.imageset/arrow-square-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-duotone.imageset/arrow-square-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-duotone.imageset/arrow-square-in-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-duotone.imageset/arrow-square-in-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-duotone.imageset/arrow-square-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-duotone.imageset/arrow-square-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-duotone.imageset/arrow-square-out-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-duotone.imageset/arrow-square-out-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-duotone.imageset/arrow-square-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-duotone.imageset/arrow-square-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-duotone.imageset/arrow-square-up-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-duotone.imageset/arrow-square-up-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-duotone.imageset/arrow-square-up-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-duotone.imageset/arrow-square-up-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-duotone.imageset/arrow-square-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-duotone.imageset/arrow-square-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-square-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-duotone.imageset/arrow-u-down-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-duotone.imageset/arrow-u-down-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-duotone.imageset/arrow-u-down-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-duotone.imageset/arrow-u-down-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-duotone.imageset/arrow-u-left-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-duotone.imageset/arrow-u-left-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-duotone.imageset/arrow-u-left-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-duotone.imageset/arrow-u-left-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-duotone.imageset/arrow-u-right-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-duotone.imageset/arrow-u-right-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-duotone.imageset/arrow-u-right-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-duotone.imageset/arrow-u-right-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-duotone.imageset/arrow-u-up-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-duotone.imageset/arrow-u-up-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-duotone.imageset/arrow-u-up-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-duotone.imageset/arrow-u-up-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-u-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-duotone.imageset/arrow-up-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-duotone.imageset/arrow-up-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-duotone.imageset/arrow-up-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-duotone.imageset/arrow-up-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-duotone.imageset/arrow-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-duotone.imageset/arrow-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-duotone.imageset/arrows-clockwise-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-duotone.imageset/arrows-clockwise-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-duotone.imageset/arrows-counter-clockwise-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-duotone.imageset/arrows-counter-clockwise-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-duotone.imageset/arrows-down-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-down-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-duotone.imageset/arrows-down-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-down-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-duotone.imageset/arrows-horizontal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-duotone.imageset/arrows-horizontal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-duotone.imageset/arrows-in-cardinal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-in-cardinal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-duotone.imageset/arrows-in-cardinal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-in-cardinal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-duotone.imageset/arrows-in-line-horizontal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-in-line-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-duotone.imageset/arrows-in-line-horizontal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-in-line-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-duotone.imageset/arrows-in-line-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-in-line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-duotone.imageset/arrows-in-line-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-in-line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-duotone.imageset/arrows-in-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-in-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-duotone.imageset/arrows-in-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-in-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-duotone.imageset/arrows-in-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-duotone.imageset/arrows-in-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-duotone.imageset/arrows-left-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-left-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-duotone.imageset/arrows-left-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-left-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-duotone.imageset/arrows-merge-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-merge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-duotone.imageset/arrows-merge-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-merge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-duotone.imageset/arrows-out-cardinal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-out-cardinal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-duotone.imageset/arrows-out-cardinal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-out-cardinal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-duotone.imageset/arrows-out-line-horizontal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-out-line-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-duotone.imageset/arrows-out-line-horizontal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-out-line-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-duotone.imageset/arrows-out-line-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-out-line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-duotone.imageset/arrows-out-line-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-out-line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-duotone.imageset/arrows-out-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-out-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-duotone.imageset/arrows-out-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-out-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-duotone.imageset/arrows-out-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-duotone.imageset/arrows-out-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-duotone.imageset/arrows-split-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-split.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-duotone.imageset/arrows-split-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-split.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-duotone.imageset/arrows-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-duotone.imageset/arrows-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/arrows-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-duotone.imageset/article-medium-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/article-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-duotone.imageset/article-medium-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/article-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-duotone.imageset/article-ny-times-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/article-ny-times.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-duotone.imageset/article-ny-times-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/article-ny-times.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-duotone.imageset/article-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/article.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-duotone.imageset/article-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/article.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-duotone.imageset/asclepius-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/asclepius.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-duotone.imageset/asclepius-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/asclepius.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-duotone.imageset/asterisk-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/asterisk-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-duotone.imageset/asterisk-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/asterisk-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-duotone.imageset/asterisk-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/asterisk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-duotone.imageset/asterisk-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/asterisk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-duotone.imageset/at-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/at.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-duotone.imageset/at-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/at.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-duotone.imageset/atom-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/atom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-duotone.imageset/atom-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/atom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-duotone.imageset/avocado-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/avocado.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-duotone.imageset/avocado-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/avocado.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-duotone.imageset/axe-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/axe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-duotone.imageset/axe-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/axe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-duotone.imageset/baby-carriage-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/baby-carriage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-duotone.imageset/baby-carriage-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/baby-carriage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-duotone.imageset/baby-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/baby.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-duotone.imageset/baby-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/baby.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-duotone.imageset/backpack-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/backpack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-duotone.imageset/backpack-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/backpack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-duotone.imageset/backspace-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/backspace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-duotone.imageset/backspace-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/backspace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-duotone.imageset/bag-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-duotone.imageset/bag-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-duotone.imageset/bag-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-duotone.imageset/bag-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-duotone.imageset/balloon-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/balloon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-duotone.imageset/balloon-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/balloon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-duotone.imageset/bandaids-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bandaids.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-duotone.imageset/bandaids-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bandaids.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-duotone.imageset/bank-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-duotone.imageset/bank-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-duotone.imageset/barbell-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/barbell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-duotone.imageset/barbell-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/barbell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-duotone.imageset/barcode-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/barcode.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-duotone.imageset/barcode-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/barcode.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-duotone.imageset/barn-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/barn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-duotone.imageset/barn-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/barn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-duotone.imageset/barricade-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/barricade.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-duotone.imageset/barricade-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/barricade.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-duotone.imageset/baseball-cap-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/baseball-cap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-duotone.imageset/baseball-cap-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/baseball-cap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-duotone.imageset/baseball-helmet-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/baseball-helmet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-duotone.imageset/baseball-helmet-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/baseball-helmet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-duotone.imageset/baseball-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/baseball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-duotone.imageset/baseball-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/baseball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-duotone.imageset/basket-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/basket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-duotone.imageset/basket-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/basket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-duotone.imageset/basketball-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/basketball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-duotone.imageset/basketball-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/basketball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-duotone.imageset/bathtub-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bathtub.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-duotone.imageset/bathtub-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bathtub.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-duotone.imageset/battery-charging-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-charging-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-duotone.imageset/battery-charging-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-charging-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-duotone.imageset/battery-charging-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-charging.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-duotone.imageset/battery-charging-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-charging.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-duotone.imageset/battery-empty-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-duotone.imageset/battery-empty-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-duotone.imageset/battery-full-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-duotone.imageset/battery-full-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-duotone.imageset/battery-high-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-duotone.imageset/battery-high-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-duotone.imageset/battery-low-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-duotone.imageset/battery-low-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-duotone.imageset/battery-medium-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-duotone.imageset/battery-medium-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-duotone.imageset/battery-plus-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-plus-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-duotone.imageset/battery-plus-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-plus-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-duotone.imageset/battery-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-duotone.imageset/battery-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-duotone.imageset/battery-vertical-empty-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-vertical-empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-duotone.imageset/battery-vertical-empty-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-vertical-empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-duotone.imageset/battery-vertical-full-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-vertical-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-duotone.imageset/battery-vertical-full-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-vertical-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-duotone.imageset/battery-vertical-high-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-vertical-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-duotone.imageset/battery-vertical-high-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-vertical-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-duotone.imageset/battery-vertical-low-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-vertical-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-duotone.imageset/battery-vertical-low-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-vertical-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-duotone.imageset/battery-vertical-medium-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-vertical-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-duotone.imageset/battery-vertical-medium-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-vertical-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-duotone.imageset/battery-warning-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-warning-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-duotone.imageset/battery-warning-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-warning-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-duotone.imageset/battery-warning-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-duotone.imageset/battery-warning-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/battery-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-duotone.imageset/beach-ball-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/beach-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-duotone.imageset/beach-ball-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/beach-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-duotone.imageset/beanie-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/beanie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-duotone.imageset/beanie-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/beanie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-duotone.imageset/bed-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-duotone.imageset/bed-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-duotone.imageset/beer-bottle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/beer-bottle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-duotone.imageset/beer-bottle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/beer-bottle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-duotone.imageset/beer-stein-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/beer-stein.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-duotone.imageset/beer-stein-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/beer-stein.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-duotone.imageset/behance-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/behance-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-duotone.imageset/behance-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/behance-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-duotone.imageset/bell-ringing-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell-ringing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-duotone.imageset/bell-ringing-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell-ringing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-duotone.imageset/bell-simple-ringing-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell-simple-ringing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-duotone.imageset/bell-simple-ringing-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell-simple-ringing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-duotone.imageset/bell-simple-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-duotone.imageset/bell-simple-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-duotone.imageset/bell-simple-z-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell-simple-z.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-duotone.imageset/bell-simple-z-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell-simple-z.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-duotone.imageset/bell-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-duotone.imageset/bell-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-duotone.imageset/bell-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-duotone.imageset/bell-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-duotone.imageset/bell-z-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell-z.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-duotone.imageset/bell-z-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell-z.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-duotone.imageset/bell-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-duotone.imageset/bell-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-duotone.imageset/belt-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/belt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-duotone.imageset/belt-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/belt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-duotone.imageset/bezier-curve-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bezier-curve.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-duotone.imageset/bezier-curve-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bezier-curve.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-duotone.imageset/bicycle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bicycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-duotone.imageset/bicycle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bicycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-duotone.imageset/binary-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/binary.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-duotone.imageset/binary-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/binary.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-duotone.imageset/binoculars-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/binoculars.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-duotone.imageset/binoculars-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/binoculars.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-duotone.imageset/biohazard-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/biohazard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-duotone.imageset/biohazard-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/biohazard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-duotone.imageset/bird-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bird.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-duotone.imageset/bird-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bird.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-duotone.imageset/blueprint-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/blueprint.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-duotone.imageset/blueprint-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/blueprint.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-duotone.imageset/bluetooth-connected-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bluetooth-connected.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-duotone.imageset/bluetooth-connected-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bluetooth-connected.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-duotone.imageset/bluetooth-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bluetooth-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-duotone.imageset/bluetooth-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bluetooth-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-duotone.imageset/bluetooth-x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bluetooth-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-duotone.imageset/bluetooth-x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bluetooth-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-duotone.imageset/bluetooth-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bluetooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-duotone.imageset/bluetooth-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bluetooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-duotone.imageset/boat-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/boat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-duotone.imageset/boat-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/boat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-duotone.imageset/bomb-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bomb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-duotone.imageset/bomb-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bomb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-duotone.imageset/bone-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-duotone.imageset/bone-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-duotone.imageset/book-bookmark-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/book-bookmark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-duotone.imageset/book-bookmark-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/book-bookmark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-duotone.imageset/book-open-text-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/book-open-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-duotone.imageset/book-open-text-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/book-open-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-duotone.imageset/book-open-user-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/book-open-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-duotone.imageset/book-open-user-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/book-open-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-duotone.imageset/book-open-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/book-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-duotone.imageset/book-open-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/book-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-duotone.imageset/book-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/book.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-duotone.imageset/book-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/book.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-duotone.imageset/bookmark-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bookmark-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-duotone.imageset/bookmark-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bookmark-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-duotone.imageset/bookmark-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bookmark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-duotone.imageset/bookmark-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bookmark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-duotone.imageset/bookmarks-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bookmarks-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-duotone.imageset/bookmarks-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bookmarks-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-duotone.imageset/bookmarks-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bookmarks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-duotone.imageset/bookmarks-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bookmarks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-duotone.imageset/books-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/books.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-duotone.imageset/books-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/books.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-duotone.imageset/boot-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/boot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-duotone.imageset/boot-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/boot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-duotone.imageset/boules-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/boules.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-duotone.imageset/boules-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/boules.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-duotone.imageset/bounding-box-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bounding-box.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-duotone.imageset/bounding-box-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bounding-box.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-duotone.imageset/bowl-food-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bowl-food.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-duotone.imageset/bowl-food-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bowl-food.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-duotone.imageset/bowl-steam-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bowl-steam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-duotone.imageset/bowl-steam-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bowl-steam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-duotone.imageset/bowling-ball-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bowling-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-duotone.imageset/bowling-ball-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bowling-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-duotone.imageset/archive-box-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/box-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-duotone.imageset/archive-box-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/box-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-duotone.imageset/box-arrow-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/box-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-duotone.imageset/box-arrow-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/box-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-duotone.imageset/boxing-glove-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/boxing-glove.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-duotone.imageset/boxing-glove-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/boxing-glove.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-duotone.imageset/brackets-angle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/brackets-angle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-duotone.imageset/brackets-angle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/brackets-angle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-duotone.imageset/brackets-curly-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/brackets-curly.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-duotone.imageset/brackets-curly-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/brackets-curly.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-duotone.imageset/brackets-round-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/brackets-round.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-duotone.imageset/brackets-round-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/brackets-round.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-duotone.imageset/brackets-square-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/brackets-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-duotone.imageset/brackets-square-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/brackets-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-duotone.imageset/brain-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/brain.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-duotone.imageset/brain-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/brain.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-duotone.imageset/brandy-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/brandy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-duotone.imageset/brandy-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/brandy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-duotone.imageset/bread-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bread.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-duotone.imageset/bread-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bread.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-duotone.imageset/bridge-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bridge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-duotone.imageset/bridge-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bridge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-duotone.imageset/briefcase-metal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/briefcase-metal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-duotone.imageset/briefcase-metal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/briefcase-metal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-duotone.imageset/briefcase-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/briefcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-duotone.imageset/briefcase-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/briefcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-duotone.imageset/broadcast-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/broadcast.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-duotone.imageset/broadcast-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/broadcast.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-duotone.imageset/broom-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/broom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-duotone.imageset/broom-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/broom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-duotone.imageset/browser-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/browser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-duotone.imageset/browser-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/browser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-duotone.imageset/browsers-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/browsers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-duotone.imageset/browsers-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/browsers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-duotone.imageset/bug-beetle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bug-beetle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-duotone.imageset/bug-beetle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bug-beetle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-duotone.imageset/bug-droid-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bug-droid.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-duotone.imageset/bug-droid-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bug-droid.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-duotone.imageset/bug-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-duotone.imageset/bug-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-duotone.imageset/building-apartment-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/building-apartment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-duotone.imageset/building-apartment-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/building-apartment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-duotone.imageset/building-office-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/building-office.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-duotone.imageset/building-office-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/building-office.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-duotone.imageset/building-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/building.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-duotone.imageset/building-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/building.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-duotone.imageset/buildings-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/buildings.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-duotone.imageset/buildings-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/buildings.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-duotone.imageset/bulldozer-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bulldozer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-duotone.imageset/bulldozer-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bulldozer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-duotone.imageset/bus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-duotone.imageset/bus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/bus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-duotone.imageset/butterfly-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/butterfly.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-duotone.imageset/butterfly-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/butterfly.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-duotone.imageset/cable-car-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cable-car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-duotone.imageset/cable-car-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cable-car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-duotone.imageset/cactus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cactus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-duotone.imageset/cactus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cactus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-duotone.imageset/cake-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-duotone.imageset/cake-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-duotone.imageset/calculator-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calculator.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-duotone.imageset/calculator-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calculator.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-duotone.imageset/calendar-blank-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-duotone.imageset/calendar-blank-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-duotone.imageset/calendar-check-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-duotone.imageset/calendar-check-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-duotone.imageset/calendar-dot-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-dot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-duotone.imageset/calendar-dot-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-dot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-duotone.imageset/calendar-dots-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-duotone.imageset/calendar-dots-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-duotone.imageset/calendar-heart-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-duotone.imageset/calendar-heart-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-duotone.imageset/calendar-minus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-duotone.imageset/calendar-minus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-duotone.imageset/calendar-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-duotone.imageset/calendar-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-duotone.imageset/calendar-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-duotone.imageset/calendar-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-duotone.imageset/calendar-star-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-duotone.imageset/calendar-star-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-duotone.imageset/calendar-x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-duotone.imageset/calendar-x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-duotone.imageset/calendar-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-duotone.imageset/calendar-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/calendar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-duotone.imageset/call-bell-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/call-bell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-duotone.imageset/call-bell-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/call-bell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-duotone.imageset/camera-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/camera-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-duotone.imageset/camera-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/camera-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-duotone.imageset/camera-rotate-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/camera-rotate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-duotone.imageset/camera-rotate-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/camera-rotate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-duotone.imageset/camera-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/camera-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-duotone.imageset/camera-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/camera-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-duotone.imageset/camera-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-duotone.imageset/camera-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-duotone.imageset/campfire-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/campfire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-duotone.imageset/campfire-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/campfire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-duotone.imageset/car-battery-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/car-battery.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-duotone.imageset/car-battery-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/car-battery.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-duotone.imageset/car-profile-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/car-profile.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-duotone.imageset/car-profile-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/car-profile.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-duotone.imageset/car-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/car-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-duotone.imageset/car-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/car-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-duotone.imageset/car-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-duotone.imageset/car-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-duotone.imageset/cardholder-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cardholder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-duotone.imageset/cardholder-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cardholder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-duotone.imageset/cards-three-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cards-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-duotone.imageset/cards-three-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cards-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-duotone.imageset/cards-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cards.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-duotone.imageset/cards-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cards.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-duotone.imageset/caret-circle-double-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-double-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-duotone.imageset/caret-circle-double-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-double-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-duotone.imageset/caret-circle-double-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-double-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-duotone.imageset/caret-circle-double-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-double-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-duotone.imageset/caret-circle-double-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-double-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-duotone.imageset/caret-circle-double-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-double-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-duotone.imageset/caret-circle-double-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-double-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-duotone.imageset/caret-circle-double-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-double-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-duotone.imageset/caret-circle-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-duotone.imageset/caret-circle-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-duotone.imageset/caret-circle-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-duotone.imageset/caret-circle-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-duotone.imageset/caret-circle-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-duotone.imageset/caret-circle-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-duotone.imageset/caret-circle-up-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-up-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-duotone.imageset/caret-circle-up-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-up-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-duotone.imageset/caret-circle-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-duotone.imageset/caret-circle-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-circle-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-duotone.imageset/caret-double-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-double-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-duotone.imageset/caret-double-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-double-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-duotone.imageset/caret-double-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-double-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-duotone.imageset/caret-double-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-double-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-duotone.imageset/caret-double-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-double-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-duotone.imageset/caret-double-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-double-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-duotone.imageset/caret-double-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-double-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-duotone.imageset/caret-double-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-double-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-duotone.imageset/caret-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-duotone.imageset/caret-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-duotone.imageset/caret-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-duotone.imageset/caret-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-duotone.imageset/caret-line-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-duotone.imageset/caret-line-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-duotone.imageset/caret-line-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-duotone.imageset/caret-line-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-duotone.imageset/caret-line-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-duotone.imageset/caret-line-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-duotone.imageset/caret-line-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-duotone.imageset/caret-line-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-duotone.imageset/caret-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-duotone.imageset/caret-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-duotone.imageset/caret-up-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-up-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-duotone.imageset/caret-up-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-up-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-duotone.imageset/caret-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-duotone.imageset/caret-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/caret-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-duotone.imageset/carrot-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/carrot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-duotone.imageset/carrot-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/carrot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-duotone.imageset/cash-register-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cash-register.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-duotone.imageset/cash-register-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cash-register.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-duotone.imageset/cassette-tape-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cassette-tape.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-duotone.imageset/cassette-tape-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cassette-tape.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-duotone.imageset/castle-turret-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/castle-turret.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-duotone.imageset/castle-turret-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/castle-turret.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-duotone.imageset/cat-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-duotone.imageset/cat-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-duotone.imageset/cell-signal-full-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-signal-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-duotone.imageset/cell-signal-full-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-signal-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-duotone.imageset/cell-signal-high-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-signal-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-duotone.imageset/cell-signal-high-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-signal-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-duotone.imageset/cell-signal-low-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-signal-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-duotone.imageset/cell-signal-low-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-signal-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-duotone.imageset/cell-signal-medium-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-signal-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-duotone.imageset/cell-signal-medium-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-signal-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-duotone.imageset/cell-signal-none-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-signal-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-duotone.imageset/cell-signal-none-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-signal-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-duotone.imageset/cell-signal-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-signal-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-duotone.imageset/cell-signal-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-signal-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-duotone.imageset/cell-signal-x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-signal-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-duotone.imageset/cell-signal-x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-signal-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-duotone.imageset/cell-tower-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-duotone.imageset/cell-tower-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cell-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-duotone.imageset/certificate-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/certificate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-duotone.imageset/certificate-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/certificate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-duotone.imageset/chair-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-duotone.imageset/chair-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-duotone.imageset/chalkboard-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chalkboard-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-duotone.imageset/chalkboard-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chalkboard-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-duotone.imageset/chalkboard-teacher-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chalkboard-teacher.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-duotone.imageset/chalkboard-teacher-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chalkboard-teacher.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-duotone.imageset/chalkboard-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chalkboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-duotone.imageset/chalkboard-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chalkboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-duotone.imageset/champagne-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/champagne.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-duotone.imageset/champagne-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/champagne.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-duotone.imageset/charging-station-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/charging-station.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-duotone.imageset/charging-station-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/charging-station.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-duotone.imageset/chart-bar-horizontal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-bar-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-duotone.imageset/chart-bar-horizontal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-bar-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-duotone.imageset/chart-bar-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-bar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-duotone.imageset/chart-bar-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-bar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-duotone.imageset/chart-donut-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-donut.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-duotone.imageset/chart-donut-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-donut.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-duotone.imageset/chart-line-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-duotone.imageset/chart-line-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-duotone.imageset/chart-line-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-duotone.imageset/chart-line-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-duotone.imageset/chart-line-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-duotone.imageset/chart-line-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-duotone.imageset/chart-pie-slice-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-pie-slice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-duotone.imageset/chart-pie-slice-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-pie-slice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-duotone.imageset/chart-pie-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-pie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-duotone.imageset/chart-pie-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-pie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-duotone.imageset/chart-polar-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-polar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-duotone.imageset/chart-polar-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-polar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-duotone.imageset/chart-scatter-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-scatter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-duotone.imageset/chart-scatter-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chart-scatter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-duotone.imageset/chat-centered-dots-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-centered-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-duotone.imageset/chat-centered-dots-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-centered-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-duotone.imageset/chat-centered-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-centered-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-duotone.imageset/chat-centered-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-centered-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-duotone.imageset/chat-centered-text-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-centered-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-duotone.imageset/chat-centered-text-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-centered-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-duotone.imageset/chat-centered-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-centered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-duotone.imageset/chat-centered-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-centered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-duotone.imageset/chat-circle-dots-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-circle-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-duotone.imageset/chat-circle-dots-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-circle-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-duotone.imageset/chat-circle-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-circle-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-duotone.imageset/chat-circle-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-circle-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-duotone.imageset/chat-circle-text-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-circle-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-duotone.imageset/chat-circle-text-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-circle-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-duotone.imageset/chat-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-duotone.imageset/chat-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-duotone.imageset/chat-dots-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-duotone.imageset/chat-dots-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-duotone.imageset/chat-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-duotone.imageset/chat-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-duotone.imageset/chat-teardrop-dots-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-teardrop-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-duotone.imageset/chat-teardrop-dots-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-teardrop-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-duotone.imageset/chat-teardrop-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-teardrop-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-duotone.imageset/chat-teardrop-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-teardrop-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-duotone.imageset/chat-teardrop-text-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-teardrop-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-duotone.imageset/chat-teardrop-text-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-teardrop-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-duotone.imageset/chat-teardrop-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-teardrop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-duotone.imageset/chat-teardrop-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-teardrop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-duotone.imageset/chat-text-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-duotone.imageset/chat-text-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-duotone.imageset/chat-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-duotone.imageset/chat-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-duotone.imageset/chats-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chats-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-duotone.imageset/chats-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chats-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-duotone.imageset/chats-teardrop-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chats-teardrop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-duotone.imageset/chats-teardrop-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chats-teardrop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-duotone.imageset/chats-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chats.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-duotone.imageset/chats-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chats.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-duotone.imageset/check-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/check-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-duotone.imageset/check-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/check-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-duotone.imageset/check-fat-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/check-fat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-duotone.imageset/check-fat-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/check-fat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-duotone.imageset/check-square-offset-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/check-square-offset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-duotone.imageset/check-square-offset-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/check-square-offset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-duotone.imageset/check-square-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/check-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-duotone.imageset/check-square-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/check-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-duotone.imageset/check-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-duotone.imageset/check-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-duotone.imageset/checkerboard-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/checkerboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-duotone.imageset/checkerboard-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/checkerboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-duotone.imageset/checks-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/checks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-duotone.imageset/checks-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/checks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-duotone.imageset/cheers-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cheers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-duotone.imageset/cheers-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cheers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-duotone.imageset/cheese-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cheese.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-duotone.imageset/cheese-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cheese.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-duotone.imageset/chef-hat-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chef-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-duotone.imageset/chef-hat-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/chef-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-duotone.imageset/cherries-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cherries.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-duotone.imageset/cherries-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cherries.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-duotone.imageset/church-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/church.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-duotone.imageset/church-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/church.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-duotone.imageset/cigarette-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cigarette-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-duotone.imageset/cigarette-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cigarette-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-duotone.imageset/cigarette-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cigarette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-duotone.imageset/cigarette-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cigarette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-duotone.imageset/circle-dashed-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-duotone.imageset/circle-dashed-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-duotone.imageset/circle-half-tilt-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circle-half-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-duotone.imageset/circle-half-tilt-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circle-half-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-duotone.imageset/circle-half-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circle-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-duotone.imageset/circle-half-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circle-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-duotone.imageset/circle-notch-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circle-notch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-duotone.imageset/circle-notch-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circle-notch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-duotone.imageset/circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-duotone.imageset/circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-duotone.imageset/circles-four-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circles-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-duotone.imageset/circles-four-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circles-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-duotone.imageset/circles-three-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circles-three-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-duotone.imageset/circles-three-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circles-three-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-duotone.imageset/circles-three-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circles-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-duotone.imageset/circles-three-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circles-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-duotone.imageset/circuitry-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circuitry.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-duotone.imageset/circuitry-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/circuitry.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-duotone.imageset/city-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/city.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-duotone.imageset/city-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/city.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-duotone.imageset/clipboard-text-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clipboard-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-duotone.imageset/clipboard-text-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clipboard-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-duotone.imageset/clipboard-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clipboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-duotone.imageset/clipboard-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clipboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-duotone.imageset/clock-afternoon-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clock-afternoon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-duotone.imageset/clock-afternoon-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clock-afternoon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-duotone.imageset/clock-clockwise-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clock-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-duotone.imageset/clock-clockwise-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clock-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-duotone.imageset/clock-countdown-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clock-countdown.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-duotone.imageset/clock-countdown-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clock-countdown.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-duotone.imageset/clock-counter-clockwise-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clock-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-duotone.imageset/clock-counter-clockwise-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clock-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-duotone.imageset/clock-user-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clock-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-duotone.imageset/clock-user-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clock-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-duotone.imageset/clock-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-duotone.imageset/clock-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-duotone.imageset/closed-captioning-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/closed-captioning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-duotone.imageset/closed-captioning-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/closed-captioning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-duotone.imageset/cloud-arrow-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-duotone.imageset/cloud-arrow-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-duotone.imageset/cloud-arrow-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-duotone.imageset/cloud-arrow-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-duotone.imageset/cloud-check-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-duotone.imageset/cloud-check-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-duotone.imageset/cloud-fog-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-fog.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-duotone.imageset/cloud-fog-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-fog.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-duotone.imageset/cloud-lightning-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-lightning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-duotone.imageset/cloud-lightning-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-lightning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-duotone.imageset/cloud-moon-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-moon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-duotone.imageset/cloud-moon-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-moon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-duotone.imageset/cloud-rain-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-rain.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-duotone.imageset/cloud-rain-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-rain.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-duotone.imageset/cloud-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-duotone.imageset/cloud-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-duotone.imageset/cloud-snow-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-snow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-duotone.imageset/cloud-snow-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-snow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-duotone.imageset/cloud-sun-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-sun.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-duotone.imageset/cloud-sun-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-sun.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-duotone.imageset/cloud-warning-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-duotone.imageset/cloud-warning-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-duotone.imageset/cloud-x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-duotone.imageset/cloud-x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-duotone.imageset/cloud-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-duotone.imageset/cloud-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-duotone.imageset/clover-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clover.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-duotone.imageset/clover-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/clover.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-duotone.imageset/club-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/club.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-duotone.imageset/club-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/club.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-duotone.imageset/coat-hanger-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/coat-hanger.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-duotone.imageset/coat-hanger-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/coat-hanger.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-duotone.imageset/coda-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/coda-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-duotone.imageset/coda-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/coda-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-duotone.imageset/code-block-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/code-block.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-duotone.imageset/code-block-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/code-block.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-duotone.imageset/code-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/code-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-duotone.imageset/code-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/code-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-duotone.imageset/code-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-duotone.imageset/code-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-duotone.imageset/codepen-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/codepen-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-duotone.imageset/codepen-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/codepen-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-duotone.imageset/codesandbox-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/codesandbox-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-duotone.imageset/codesandbox-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/codesandbox-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-duotone.imageset/coffee-bean-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/coffee-bean.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-duotone.imageset/coffee-bean-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/coffee-bean.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-duotone.imageset/coffee-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/coffee.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-duotone.imageset/coffee-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/coffee.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-duotone.imageset/coin-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/coin-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-duotone.imageset/coin-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/coin-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-duotone.imageset/coin-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/coin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-duotone.imageset/coin-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/coin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-duotone.imageset/coins-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/coins.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-duotone.imageset/coins-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/coins.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-duotone.imageset/columns-plus-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/columns-plus-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-duotone.imageset/columns-plus-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/columns-plus-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-duotone.imageset/columns-plus-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/columns-plus-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-duotone.imageset/columns-plus-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/columns-plus-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-duotone.imageset/columns-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/columns.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-duotone.imageset/columns-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/columns.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-duotone.imageset/command-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/command.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-duotone.imageset/command-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/command.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-duotone.imageset/compass-rose-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/compass-rose.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-duotone.imageset/compass-rose-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/compass-rose.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-duotone.imageset/compass-tool-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/compass-tool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-duotone.imageset/compass-tool-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/compass-tool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-duotone.imageset/compass-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/compass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-duotone.imageset/compass-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/compass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-duotone.imageset/computer-tower-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/computer-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-duotone.imageset/computer-tower-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/computer-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-duotone.imageset/confetti-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/confetti.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-duotone.imageset/confetti-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/confetti.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-duotone.imageset/contactless-payment-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/contactless-payment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-duotone.imageset/contactless-payment-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/contactless-payment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-duotone.imageset/control-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/control.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-duotone.imageset/control-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/control.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-duotone.imageset/cookie-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cookie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-duotone.imageset/cookie-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cookie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-duotone.imageset/cooking-pot-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cooking-pot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-duotone.imageset/cooking-pot-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cooking-pot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-duotone.imageset/copy-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/copy-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-duotone.imageset/copy-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/copy-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-duotone.imageset/copy-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/copy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-duotone.imageset/copy-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/copy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-duotone.imageset/copyleft-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/copyleft.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-duotone.imageset/copyleft-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/copyleft.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-duotone.imageset/copyright-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/copyright.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-duotone.imageset/copyright-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/copyright.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-duotone.imageset/corners-in-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/corners-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-duotone.imageset/corners-in-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/corners-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-duotone.imageset/corners-out-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/corners-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-duotone.imageset/corners-out-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/corners-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-duotone.imageset/couch-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/couch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-duotone.imageset/couch-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/couch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-duotone.imageset/court-basketball-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/court-basketball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-duotone.imageset/court-basketball-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/court-basketball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-duotone.imageset/cow-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-duotone.imageset/cow-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-duotone.imageset/cowboy-hat-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cowboy-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-duotone.imageset/cowboy-hat-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cowboy-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-duotone.imageset/cpu-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cpu.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-duotone.imageset/cpu-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cpu.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-duotone.imageset/crane-tower-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crane-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-duotone.imageset/crane-tower-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crane-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-duotone.imageset/crane-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-duotone.imageset/crane-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-duotone.imageset/credit-card-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/credit-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-duotone.imageset/credit-card-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/credit-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-duotone.imageset/cricket-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cricket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-duotone.imageset/cricket-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cricket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-duotone.imageset/crop-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-duotone.imageset/crop-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-duotone.imageset/cross-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cross.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-duotone.imageset/cross-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cross.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-duotone.imageset/crosshair-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crosshair-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-duotone.imageset/crosshair-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crosshair-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-duotone.imageset/crosshair-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crosshair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-duotone.imageset/crosshair-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crosshair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-duotone.imageset/crown-cross-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crown-cross.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-duotone.imageset/crown-cross-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crown-cross.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-duotone.imageset/crown-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crown-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-duotone.imageset/crown-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crown-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-duotone.imageset/crown-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crown.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-duotone.imageset/crown-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/crown.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-duotone.imageset/cube-focus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cube-focus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-duotone.imageset/cube-focus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cube-focus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-duotone.imageset/cube-transparent-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cube-transparent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-duotone.imageset/cube-transparent-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cube-transparent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-duotone.imageset/cube-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cube.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-duotone.imageset/cube-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cube.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-duotone.imageset/currency-btc-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-btc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-duotone.imageset/currency-btc-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-btc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-duotone.imageset/currency-circle-dollar-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-circle-dollar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-duotone.imageset/currency-circle-dollar-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-circle-dollar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-duotone.imageset/currency-cny-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-cny.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-duotone.imageset/currency-cny-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-cny.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-duotone.imageset/currency-dollar-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-dollar-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-duotone.imageset/currency-dollar-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-dollar-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-duotone.imageset/currency-dollar-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-dollar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-duotone.imageset/currency-dollar-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-dollar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-duotone.imageset/currency-eth-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-eth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-duotone.imageset/currency-eth-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-eth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-duotone.imageset/currency-eur-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-eur.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-duotone.imageset/currency-eur-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-eur.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-duotone.imageset/currency-gbp-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-gbp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-duotone.imageset/currency-gbp-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-gbp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-duotone.imageset/currency-inr-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-inr.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-duotone.imageset/currency-inr-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-inr.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-duotone.imageset/currency-jpy-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-jpy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-duotone.imageset/currency-jpy-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-jpy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-duotone.imageset/currency-krw-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-krw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-duotone.imageset/currency-krw-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-krw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-duotone.imageset/currency-kzt-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-kzt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-duotone.imageset/currency-kzt-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-kzt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-duotone.imageset/currency-ngn-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-ngn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-duotone.imageset/currency-ngn-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-ngn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-duotone.imageset/currency-rub-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-rub.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-duotone.imageset/currency-rub-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/currency-rub.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-duotone.imageset/cursor-click-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cursor-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-duotone.imageset/cursor-click-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cursor-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-duotone.imageset/cursor-text-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cursor-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-duotone.imageset/cursor-text-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cursor-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-duotone.imageset/cursor-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cursor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-duotone.imageset/cursor-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cursor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-duotone.imageset/cylinder-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cylinder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-duotone.imageset/cylinder-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/cylinder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-duotone.imageset/database-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/database.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-duotone.imageset/database-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/database.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-duotone.imageset/desk-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/desk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-duotone.imageset/desk-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/desk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-duotone.imageset/desktop-tower-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/desktop-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-duotone.imageset/desktop-tower-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/desktop-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-duotone.imageset/desktop-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/desktop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-duotone.imageset/desktop-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/desktop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-duotone.imageset/detective-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/detective.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-duotone.imageset/detective-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/detective.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-duotone.imageset/dev-to-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dev-to-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-duotone.imageset/dev-to-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dev-to-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-duotone.imageset/device-mobile-camera-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-mobile-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-duotone.imageset/device-mobile-camera-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-mobile-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-duotone.imageset/device-mobile-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-mobile-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-duotone.imageset/device-mobile-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-mobile-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-duotone.imageset/device-mobile-speaker-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-mobile-speaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-duotone.imageset/device-mobile-speaker-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-mobile-speaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-duotone.imageset/device-mobile-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-mobile.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-duotone.imageset/device-mobile-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-mobile.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-duotone.imageset/device-rotate-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-rotate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-duotone.imageset/device-rotate-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-rotate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-duotone.imageset/device-tablet-camera-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-tablet-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-duotone.imageset/device-tablet-camera-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-tablet-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-duotone.imageset/device-tablet-speaker-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-tablet-speaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-duotone.imageset/device-tablet-speaker-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-tablet-speaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-duotone.imageset/device-tablet-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-tablet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-duotone.imageset/device-tablet-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/device-tablet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-duotone.imageset/devices-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/devices.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-duotone.imageset/devices-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/devices.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-duotone.imageset/diamond-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/diamond.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-duotone.imageset/diamond-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/diamond.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-duotone.imageset/diamonds-four-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/diamonds-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-duotone.imageset/diamonds-four-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/diamonds-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-duotone.imageset/dice-five-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dice-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-duotone.imageset/dice-five-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dice-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-duotone.imageset/dice-four-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dice-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-duotone.imageset/dice-four-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dice-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-duotone.imageset/dice-one-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dice-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-duotone.imageset/dice-one-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dice-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-duotone.imageset/dice-six-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dice-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-duotone.imageset/dice-six-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dice-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-duotone.imageset/dice-three-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dice-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-duotone.imageset/dice-three-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dice-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-duotone.imageset/dice-two-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dice-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-duotone.imageset/dice-two-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dice-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-duotone.imageset/disc-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/disc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-duotone.imageset/disc-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/disc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-duotone.imageset/disco-ball-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/disco-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-duotone.imageset/disco-ball-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/disco-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-duotone.imageset/discord-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/discord-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-duotone.imageset/discord-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/discord-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-duotone.imageset/divide-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/divide.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-duotone.imageset/divide-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/divide.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-duotone.imageset/dna-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dna.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-duotone.imageset/dna-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dna.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-duotone.imageset/dog-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dog.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-duotone.imageset/dog-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dog.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-duotone.imageset/door-open-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/door-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-duotone.imageset/door-open-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/door-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-duotone.imageset/door-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/door.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-duotone.imageset/door-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/door.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-duotone.imageset/dot-outline-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dot-outline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-duotone.imageset/dot-outline-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dot-outline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-duotone.imageset/dot-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-duotone.imageset/dot-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-duotone.imageset/dots-nine-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-duotone.imageset/dots-nine-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-duotone.imageset/dots-six-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-six-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-duotone.imageset/dots-six-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-six-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-duotone.imageset/dots-six-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-duotone.imageset/dots-six-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-duotone.imageset/dots-three-circle-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-three-circle-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-duotone.imageset/dots-three-circle-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-three-circle-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-duotone.imageset/dots-three-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-three-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-duotone.imageset/dots-three-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-three-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-duotone.imageset/dots-three-outline-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-three-outline-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-duotone.imageset/dots-three-outline-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-three-outline-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-duotone.imageset/dots-three-outline-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-three-outline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-duotone.imageset/dots-three-outline-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-three-outline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-duotone.imageset/dots-three-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-three-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-duotone.imageset/dots-three-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-three-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-duotone.imageset/dots-three-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-duotone.imageset/dots-three-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dots-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-duotone.imageset/download-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/download-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-duotone.imageset/download-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/download-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-duotone.imageset/download-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/download.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-duotone.imageset/download-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/download.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-duotone.imageset/dress-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dress.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-duotone.imageset/dress-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dress.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-duotone.imageset/dresser-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dresser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-duotone.imageset/dresser-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dresser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-duotone.imageset/dribbble-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dribbble-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-duotone.imageset/dribbble-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dribbble-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-duotone.imageset/drone-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/drone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-duotone.imageset/drone-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/drone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-duotone.imageset/drop-half-bottom-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/drop-half-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-duotone.imageset/drop-half-bottom-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/drop-half-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-duotone.imageset/drop-half-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/drop-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-duotone.imageset/drop-half-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/drop-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-duotone.imageset/drop-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/drop-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-duotone.imageset/drop-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/drop-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-duotone.imageset/drop-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/drop-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-duotone.imageset/drop-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/drop-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-duotone.imageset/drop-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/drop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-duotone.imageset/drop-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/drop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-duotone.imageset/dropbox-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dropbox-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-duotone.imageset/dropbox-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/dropbox-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-duotone.imageset/ear-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ear-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-duotone.imageset/ear-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ear-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-duotone.imageset/ear-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-duotone.imageset/ear-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-duotone.imageset/egg-crack-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/egg-crack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-duotone.imageset/egg-crack-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/egg-crack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-duotone.imageset/egg-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/egg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-duotone.imageset/egg-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/egg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-duotone.imageset/eject-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eject-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-duotone.imageset/eject-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eject-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-duotone.imageset/eject-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eject.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-duotone.imageset/eject-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eject.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-duotone.imageset/elevator-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/elevator.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-duotone.imageset/elevator-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/elevator.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-duotone.imageset/empty-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-duotone.imageset/empty-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-duotone.imageset/engine-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/engine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-duotone.imageset/engine-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/engine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-duotone.imageset/envelope-open-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/envelope-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-duotone.imageset/envelope-open-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/envelope-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-duotone.imageset/envelope-simple-open-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/envelope-simple-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-duotone.imageset/envelope-simple-open-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/envelope-simple-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-duotone.imageset/envelope-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/envelope-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-duotone.imageset/envelope-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/envelope-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-duotone.imageset/envelope-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/envelope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-duotone.imageset/envelope-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/envelope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-duotone.imageset/equalizer-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/equalizer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-duotone.imageset/equalizer-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/equalizer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-duotone.imageset/equals-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-duotone.imageset/equals-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-duotone.imageset/eraser-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eraser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-duotone.imageset/eraser-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eraser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-duotone.imageset/escalator-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/escalator-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-duotone.imageset/escalator-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/escalator-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-duotone.imageset/escalator-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/escalator-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-duotone.imageset/escalator-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/escalator-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-duotone.imageset/exam-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/exam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-duotone.imageset/exam-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/exam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-duotone.imageset/exclamation-mark-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/exclamation-mark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-duotone.imageset/exclamation-mark-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/exclamation-mark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-duotone.imageset/exclude-square-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/exclude-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-duotone.imageset/exclude-square-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/exclude-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-duotone.imageset/exclude-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/exclude.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-duotone.imageset/exclude-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/exclude.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-duotone.imageset/export-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/export.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-duotone.imageset/export-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/export.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-duotone.imageset/eye-closed-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eye-closed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-duotone.imageset/eye-closed-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eye-closed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-duotone.imageset/eye-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eye-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-duotone.imageset/eye-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eye-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-duotone.imageset/eye-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eye.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-duotone.imageset/eye-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eye.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-duotone.imageset/eyedropper-sample-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eyedropper-sample.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-duotone.imageset/eyedropper-sample-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eyedropper-sample.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-duotone.imageset/eyedropper-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eyedropper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-duotone.imageset/eyedropper-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eyedropper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-duotone.imageset/eyeglasses-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eyeglasses.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-duotone.imageset/eyeglasses-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eyeglasses.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-duotone.imageset/eyes-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eyes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-duotone.imageset/eyes-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/eyes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-duotone.imageset/face-mask-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/face-mask.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-duotone.imageset/face-mask-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/face-mask.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-duotone.imageset/facebook-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/facebook-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-duotone.imageset/facebook-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/facebook-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-duotone.imageset/factory-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/factory.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-duotone.imageset/factory-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/factory.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-duotone.imageset/faders-horizontal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/faders-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-duotone.imageset/faders-horizontal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/faders-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-duotone.imageset/faders-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/faders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-duotone.imageset/faders-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/faders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-duotone.imageset/fallout-shelter-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fallout-shelter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-duotone.imageset/fallout-shelter-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fallout-shelter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-duotone.imageset/fan-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fan.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-duotone.imageset/fan-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fan.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-duotone.imageset/farm-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/farm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-duotone.imageset/farm-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/farm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-duotone.imageset/fast-forward-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fast-forward-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-duotone.imageset/fast-forward-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fast-forward-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-duotone.imageset/fast-forward-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fast-forward.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-duotone.imageset/fast-forward-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fast-forward.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-duotone.imageset/feather-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/feather.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-duotone.imageset/feather-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/feather.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-duotone.imageset/fediverse-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fediverse-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-duotone.imageset/fediverse-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fediverse-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-duotone.imageset/figma-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/figma-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-duotone.imageset/figma-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/figma-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-duotone.imageset/file-archive-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-archive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-duotone.imageset/file-archive-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-archive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-duotone.imageset/file-arrow-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-duotone.imageset/file-arrow-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-duotone.imageset/file-arrow-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-duotone.imageset/file-arrow-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-duotone.imageset/file-audio-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-audio.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-duotone.imageset/file-audio-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-audio.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-duotone.imageset/file-c-sharp-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-c-sharp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-duotone.imageset/file-c-sharp-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-c-sharp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-duotone.imageset/file-c-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-c.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-duotone.imageset/file-c-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-c.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-duotone.imageset/file-cloud-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-duotone.imageset/file-cloud-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-duotone.imageset/file-code-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-duotone.imageset/file-code-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-duotone.imageset/file-cpp-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-cpp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-duotone.imageset/file-cpp-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-cpp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-duotone.imageset/file-css-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-css.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-duotone.imageset/file-css-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-css.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-duotone.imageset/file-csv-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-csv.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-duotone.imageset/file-csv-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-csv.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-duotone.imageset/file-dashed-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-duotone.imageset/file-dashed-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-duotone.imageset/file-doc-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-doc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-duotone.imageset/file-doc-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-doc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-duotone.imageset/file-html-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-html.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-duotone.imageset/file-html-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-html.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-duotone.imageset/file-image-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-image.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-duotone.imageset/file-image-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-image.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-duotone.imageset/file-ini-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-ini.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-duotone.imageset/file-ini-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-ini.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-duotone.imageset/file-jpg-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-jpg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-duotone.imageset/file-jpg-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-jpg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-duotone.imageset/file-js-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-js.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-duotone.imageset/file-js-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-js.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-duotone.imageset/file-jsx-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-jsx.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-duotone.imageset/file-jsx-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-jsx.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-duotone.imageset/file-lock-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-duotone.imageset/file-lock-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-duotone.imageset/file-magnifying-glass-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-duotone.imageset/file-magnifying-glass-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-duotone.imageset/file-md-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-md.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-duotone.imageset/file-md-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-md.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-duotone.imageset/file-minus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-duotone.imageset/file-minus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-duotone.imageset/file-pdf-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-pdf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-duotone.imageset/file-pdf-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-pdf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-duotone.imageset/file-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-duotone.imageset/file-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-duotone.imageset/file-png-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-png.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-duotone.imageset/file-png-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-png.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-duotone.imageset/file-ppt-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-ppt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-duotone.imageset/file-ppt-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-ppt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-duotone.imageset/file-py-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-py.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-duotone.imageset/file-py-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-py.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-duotone.imageset/file-rs-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-rs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-duotone.imageset/file-rs-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-rs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-duotone.imageset/file-sql-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-sql.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-duotone.imageset/file-sql-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-sql.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-duotone.imageset/file-svg-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-svg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-duotone.imageset/file-svg-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-svg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-duotone.imageset/file-text-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-duotone.imageset/file-text-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-duotone.imageset/file-ts-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-ts.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-duotone.imageset/file-ts-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-ts.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-duotone.imageset/file-tsx-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-tsx.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-duotone.imageset/file-tsx-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-tsx.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-duotone.imageset/file-txt-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-txt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-duotone.imageset/file-txt-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-txt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-duotone.imageset/file-video-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-video.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-duotone.imageset/file-video-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-video.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-duotone.imageset/file-vue-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-vue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-duotone.imageset/file-vue-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-vue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-duotone.imageset/file-x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-duotone.imageset/file-x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-duotone.imageset/file-xls-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-xls.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-duotone.imageset/file-xls-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-xls.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-duotone.imageset/file-zip-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-zip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-duotone.imageset/file-zip-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file-zip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-duotone.imageset/file-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-duotone.imageset/file-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/file.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-duotone.imageset/files-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/files.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-duotone.imageset/files-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/files.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-duotone.imageset/film-reel-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/film-reel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-duotone.imageset/film-reel-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/film-reel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-duotone.imageset/film-script-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/film-script.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-duotone.imageset/film-script-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/film-script.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-duotone.imageset/film-slate-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/film-slate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-duotone.imageset/film-slate-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/film-slate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-duotone.imageset/film-strip-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/film-strip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-duotone.imageset/film-strip-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/film-strip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-duotone.imageset/fingerprint-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fingerprint-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-duotone.imageset/fingerprint-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fingerprint-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-duotone.imageset/fingerprint-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fingerprint.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-duotone.imageset/fingerprint-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fingerprint.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-duotone.imageset/finn-the-human-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/finn-the-human.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-duotone.imageset/finn-the-human-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/finn-the-human.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-duotone.imageset/fire-extinguisher-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fire-extinguisher.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-duotone.imageset/fire-extinguisher-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fire-extinguisher.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-duotone.imageset/fire-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fire-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-duotone.imageset/fire-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fire-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-duotone.imageset/fire-truck-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fire-truck.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-duotone.imageset/fire-truck-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fire-truck.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-duotone.imageset/fire-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-duotone.imageset/fire-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-duotone.imageset/first-aid-kit-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/first-aid-kit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-duotone.imageset/first-aid-kit-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/first-aid-kit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-duotone.imageset/first-aid-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/first-aid.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-duotone.imageset/first-aid-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/first-aid.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-duotone.imageset/fish-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fish-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-duotone.imageset/fish-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fish-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-duotone.imageset/fish-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fish.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-duotone.imageset/fish-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fish.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-duotone.imageset/flag-banner-fold-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flag-banner-fold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-duotone.imageset/flag-banner-fold-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flag-banner-fold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-duotone.imageset/flag-banner-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flag-banner.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-duotone.imageset/flag-banner-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flag-banner.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-duotone.imageset/flag-checkered-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flag-checkered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-duotone.imageset/flag-checkered-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flag-checkered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-duotone.imageset/flag-pennant-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flag-pennant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-duotone.imageset/flag-pennant-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flag-pennant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-duotone.imageset/flag-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-duotone.imageset/flag-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-duotone.imageset/flame-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flame.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-duotone.imageset/flame-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flame.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-duotone.imageset/flashlight-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flashlight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-duotone.imageset/flashlight-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flashlight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-duotone.imageset/flask-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flask.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-duotone.imageset/flask-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flask.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-duotone.imageset/flip-horizontal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flip-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-duotone.imageset/flip-horizontal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flip-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-duotone.imageset/flip-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flip-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-duotone.imageset/flip-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flip-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-duotone.imageset/floppy-disk-back-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/floppy-disk-back.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-duotone.imageset/floppy-disk-back-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/floppy-disk-back.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-duotone.imageset/floppy-disk-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/floppy-disk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-duotone.imageset/floppy-disk-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/floppy-disk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-duotone.imageset/flow-arrow-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flow-arrow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-duotone.imageset/flow-arrow-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flow-arrow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-duotone.imageset/flower-lotus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flower-lotus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-duotone.imageset/flower-lotus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flower-lotus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-duotone.imageset/flower-tulip-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flower-tulip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-duotone.imageset/flower-tulip-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flower-tulip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-duotone.imageset/flower-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-duotone.imageset/flower-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-duotone.imageset/flying-saucer-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flying-saucer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-duotone.imageset/flying-saucer-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/flying-saucer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-duotone.imageset/folder-dashed-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-duotone.imageset/folder-dashed-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-duotone.imageset/folder-lock-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-duotone.imageset/folder-lock-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-duotone.imageset/folder-minus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-duotone.imageset/folder-minus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-duotone.imageset/folder-open-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-duotone.imageset/folder-open-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-duotone.imageset/folder-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-duotone.imageset/folder-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-duotone.imageset/folder-simple-dashed-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-simple-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-duotone.imageset/folder-simple-dashed-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-simple-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-duotone.imageset/folder-simple-lock-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-simple-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-duotone.imageset/folder-simple-lock-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-simple-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-duotone.imageset/folder-simple-minus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-simple-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-duotone.imageset/folder-simple-minus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-simple-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-duotone.imageset/folder-simple-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-simple-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-duotone.imageset/folder-simple-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-simple-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-duotone.imageset/folder-simple-star-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-simple-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-duotone.imageset/folder-simple-star-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-simple-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-duotone.imageset/folder-simple-user-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-simple-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-duotone.imageset/folder-simple-user-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-simple-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-duotone.imageset/folder-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-duotone.imageset/folder-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-duotone.imageset/folder-star-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-duotone.imageset/folder-star-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-duotone.imageset/folder-user-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-duotone.imageset/folder-user-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-duotone.imageset/folder-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-duotone.imageset/folder-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-duotone.imageset/folders-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-duotone.imageset/folders-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/folders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-duotone.imageset/football-helmet-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/football-helmet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-duotone.imageset/football-helmet-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/football-helmet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-duotone.imageset/football-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/football.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-duotone.imageset/football-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/football.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-duotone.imageset/footprints-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/footprints.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-duotone.imageset/footprints-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/footprints.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-duotone.imageset/fork-knife-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fork-knife.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-duotone.imageset/fork-knife-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/fork-knife.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-duotone.imageset/four-k-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/four-k.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-duotone.imageset/four-k-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/four-k.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-duotone.imageset/frame-corners-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/frame-corners.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-duotone.imageset/frame-corners-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/frame-corners.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-duotone.imageset/framer-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/framer-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-duotone.imageset/framer-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/framer-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-duotone.imageset/function-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/function.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-duotone.imageset/function-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/function.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-duotone.imageset/funnel-simple-x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/funnel-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-duotone.imageset/funnel-simple-x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/funnel-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-duotone.imageset/funnel-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/funnel-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-duotone.imageset/funnel-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/funnel-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-duotone.imageset/funnel-x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/funnel-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-duotone.imageset/funnel-x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/funnel-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-duotone.imageset/funnel-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/funnel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-duotone.imageset/funnel-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/funnel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-duotone.imageset/game-controller-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/game-controller.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-duotone.imageset/game-controller-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/game-controller.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-duotone.imageset/garage-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/garage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-duotone.imageset/garage-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/garage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-duotone.imageset/gas-can-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gas-can.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-duotone.imageset/gas-can-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gas-can.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-duotone.imageset/gas-pump-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gas-pump.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-duotone.imageset/gas-pump-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gas-pump.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-duotone.imageset/gauge-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gauge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-duotone.imageset/gauge-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gauge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-duotone.imageset/gavel-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gavel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-duotone.imageset/gavel-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gavel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-duotone.imageset/gear-fine-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gear-fine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-duotone.imageset/gear-fine-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gear-fine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-duotone.imageset/gear-six-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gear-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-duotone.imageset/gear-six-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gear-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-duotone.imageset/gear-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-duotone.imageset/gear-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-duotone.imageset/gender-female-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gender-female.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-duotone.imageset/gender-female-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gender-female.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-duotone.imageset/gender-intersex-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gender-intersex.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-duotone.imageset/gender-intersex-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gender-intersex.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-duotone.imageset/gender-male-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gender-male.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-duotone.imageset/gender-male-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gender-male.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-duotone.imageset/gender-neuter-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gender-neuter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-duotone.imageset/gender-neuter-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gender-neuter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-duotone.imageset/gender-nonbinary-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gender-nonbinary.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-duotone.imageset/gender-nonbinary-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gender-nonbinary.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-duotone.imageset/gender-transgender-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gender-transgender.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-duotone.imageset/gender-transgender-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gender-transgender.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-duotone.imageset/ghost-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ghost.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-duotone.imageset/ghost-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ghost.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-duotone.imageset/gif-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gif.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-duotone.imageset/gif-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gif.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-duotone.imageset/gift-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gift.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-duotone.imageset/gift-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gift.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-duotone.imageset/git-branch-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/git-branch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-duotone.imageset/git-branch-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/git-branch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-duotone.imageset/git-commit-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/git-commit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-duotone.imageset/git-commit-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/git-commit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-duotone.imageset/git-diff-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/git-diff.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-duotone.imageset/git-diff-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/git-diff.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-duotone.imageset/git-fork-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/git-fork.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-duotone.imageset/git-fork-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/git-fork.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-duotone.imageset/git-merge-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/git-merge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-duotone.imageset/git-merge-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/git-merge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-duotone.imageset/git-pull-request-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/git-pull-request.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-duotone.imageset/git-pull-request-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/git-pull-request.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-duotone.imageset/github-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/github-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-duotone.imageset/github-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/github-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-duotone.imageset/gitlab-logo-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gitlab-logo-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-duotone.imageset/gitlab-logo-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gitlab-logo-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-duotone.imageset/gitlab-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gitlab-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-duotone.imageset/gitlab-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gitlab-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-duotone.imageset/globe-hemisphere-east-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/globe-hemisphere-east.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-duotone.imageset/globe-hemisphere-east-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/globe-hemisphere-east.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-duotone.imageset/globe-hemisphere-west-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/globe-hemisphere-west.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-duotone.imageset/globe-hemisphere-west-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/globe-hemisphere-west.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-duotone.imageset/globe-simple-x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/globe-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-duotone.imageset/globe-simple-x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/globe-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-duotone.imageset/globe-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/globe-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-duotone.imageset/globe-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/globe-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-duotone.imageset/globe-stand-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/globe-stand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-duotone.imageset/globe-stand-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/globe-stand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-duotone.imageset/globe-x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/globe-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-duotone.imageset/globe-x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/globe-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-duotone.imageset/globe-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/globe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-duotone.imageset/globe-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/globe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-duotone.imageset/goggles-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/goggles.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-duotone.imageset/goggles-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/goggles.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-duotone.imageset/golf-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/golf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-duotone.imageset/golf-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/golf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-duotone.imageset/goodreads-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/goodreads-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-duotone.imageset/goodreads-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/goodreads-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-duotone.imageset/google-cardboard-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/google-cardboard-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-duotone.imageset/google-cardboard-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/google-cardboard-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-duotone.imageset/google-chrome-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/google-chrome-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-duotone.imageset/google-chrome-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/google-chrome-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-duotone.imageset/google-drive-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/google-drive-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-duotone.imageset/google-drive-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/google-drive-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-duotone.imageset/google-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/google-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-duotone.imageset/google-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/google-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-duotone.imageset/google-photos-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/google-photos-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-duotone.imageset/google-photos-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/google-photos-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-duotone.imageset/google-play-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/google-play-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-duotone.imageset/google-play-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/google-play-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-duotone.imageset/google-podcasts-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/google-podcasts-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-duotone.imageset/google-podcasts-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/google-podcasts-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-duotone.imageset/gps-fix-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gps-fix.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-duotone.imageset/gps-fix-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gps-fix.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-duotone.imageset/gps-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gps-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-duotone.imageset/gps-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gps-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-duotone.imageset/gps-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gps.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-duotone.imageset/gps-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gps.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-duotone.imageset/gradient-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gradient.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-duotone.imageset/gradient-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/gradient.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-duotone.imageset/graduation-cap-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/graduation-cap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-duotone.imageset/graduation-cap-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/graduation-cap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-duotone.imageset/grains-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/grains-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-duotone.imageset/grains-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/grains-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-duotone.imageset/grains-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/grains.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-duotone.imageset/grains-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/grains.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-duotone.imageset/graph-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/graph.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-duotone.imageset/graph-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/graph.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-duotone.imageset/graphics-card-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/graphics-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-duotone.imageset/graphics-card-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/graphics-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-duotone.imageset/greater-than-or-equal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/greater-than-or-equal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-duotone.imageset/greater-than-or-equal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/greater-than-or-equal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-duotone.imageset/greater-than-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/greater-than.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-duotone.imageset/greater-than-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/greater-than.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-duotone.imageset/grid-four-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/grid-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-duotone.imageset/grid-four-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/grid-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-duotone.imageset/grid-nine-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/grid-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-duotone.imageset/grid-nine-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/grid-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-duotone.imageset/guitar-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/guitar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-duotone.imageset/guitar-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/guitar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-duotone.imageset/hair-dryer-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hair-dryer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-duotone.imageset/hair-dryer-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hair-dryer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-duotone.imageset/hamburger-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hamburger.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-duotone.imageset/hamburger-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hamburger.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-duotone.imageset/hammer-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hammer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-duotone.imageset/hammer-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hammer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-duotone.imageset/hand-arrow-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-duotone.imageset/hand-arrow-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-duotone.imageset/hand-arrow-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-duotone.imageset/hand-arrow-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-duotone.imageset/hand-coins-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-coins.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-duotone.imageset/hand-coins-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-coins.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-duotone.imageset/hand-deposit-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-deposit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-duotone.imageset/hand-deposit-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-deposit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-duotone.imageset/hand-eye-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-eye.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-duotone.imageset/hand-eye-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-eye.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-duotone.imageset/hand-fist-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-fist.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-duotone.imageset/hand-fist-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-fist.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-duotone.imageset/hand-grabbing-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-grabbing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-duotone.imageset/hand-grabbing-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-grabbing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-duotone.imageset/hand-heart-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-duotone.imageset/hand-heart-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-duotone.imageset/hand-palm-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-palm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-duotone.imageset/hand-palm-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-palm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-duotone.imageset/hand-peace-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-peace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-duotone.imageset/hand-peace-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-peace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-duotone.imageset/hand-pointing-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-pointing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-duotone.imageset/hand-pointing-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-pointing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-duotone.imageset/hand-soap-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-soap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-duotone.imageset/hand-soap-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-soap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-duotone.imageset/hand-swipe-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-swipe-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-duotone.imageset/hand-swipe-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-swipe-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-duotone.imageset/hand-swipe-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-swipe-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-duotone.imageset/hand-swipe-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-swipe-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-duotone.imageset/hand-tap-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-tap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-duotone.imageset/hand-tap-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-tap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-duotone.imageset/hand-waving-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-waving.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-duotone.imageset/hand-waving-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-waving.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-duotone.imageset/hand-withdraw-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-withdraw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-duotone.imageset/hand-withdraw-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand-withdraw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-duotone.imageset/hand-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-duotone.imageset/hand-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-duotone.imageset/handbag-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/handbag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-duotone.imageset/handbag-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/handbag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-duotone.imageset/handbag-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/handbag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-duotone.imageset/handbag-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/handbag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-duotone.imageset/hands-clapping-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hands-clapping.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-duotone.imageset/hands-clapping-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hands-clapping.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-duotone.imageset/hands-praying-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hands-praying.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-duotone.imageset/hands-praying-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hands-praying.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-duotone.imageset/handshake-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/handshake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-duotone.imageset/handshake-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/handshake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-duotone.imageset/hard-drive-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hard-drive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-duotone.imageset/hard-drive-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hard-drive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-duotone.imageset/hard-drives-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hard-drives.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-duotone.imageset/hard-drives-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hard-drives.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-duotone.imageset/hard-hat-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hard-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-duotone.imageset/hard-hat-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hard-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-duotone.imageset/hash-straight-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hash-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-duotone.imageset/hash-straight-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hash-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-duotone.imageset/hash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-duotone.imageset/hash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-duotone.imageset/head-circuit-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/head-circuit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-duotone.imageset/head-circuit-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/head-circuit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-duotone.imageset/headlights-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/headlights.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-duotone.imageset/headlights-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/headlights.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-duotone.imageset/headphones-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/headphones.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-duotone.imageset/headphones-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/headphones.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-duotone.imageset/headset-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/headset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-duotone.imageset/headset-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/headset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-duotone.imageset/heart-break-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/heart-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-duotone.imageset/heart-break-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/heart-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-duotone.imageset/heart-half-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/heart-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-duotone.imageset/heart-half-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/heart-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-duotone.imageset/heart-straight-break-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/heart-straight-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-duotone.imageset/heart-straight-break-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/heart-straight-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-duotone.imageset/heart-straight-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/heart-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-duotone.imageset/heart-straight-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/heart-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-duotone.imageset/heart-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-duotone.imageset/heart-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-duotone.imageset/heartbeat-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/heartbeat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-duotone.imageset/heartbeat-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/heartbeat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-duotone.imageset/hexagon-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hexagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-duotone.imageset/hexagon-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hexagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-duotone.imageset/high-definition-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/high-definition.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-duotone.imageset/high-definition-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/high-definition.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-duotone.imageset/high-heel-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/high-heel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-duotone.imageset/high-heel-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/high-heel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-duotone.imageset/highlighter-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/highlighter-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-duotone.imageset/highlighter-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/highlighter-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-duotone.imageset/highlighter-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/highlighter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-duotone.imageset/highlighter-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/highlighter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-duotone.imageset/hockey-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hockey.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-duotone.imageset/hockey-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hockey.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-duotone.imageset/hoodie-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hoodie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-duotone.imageset/hoodie-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hoodie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-duotone.imageset/horse-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/horse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-duotone.imageset/horse-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/horse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-duotone.imageset/hospital-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hospital.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-duotone.imageset/hospital-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hospital.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-duotone.imageset/hourglass-high-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-duotone.imageset/hourglass-high-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-duotone.imageset/hourglass-low-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-duotone.imageset/hourglass-low-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-duotone.imageset/hourglass-medium-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-duotone.imageset/hourglass-medium-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-duotone.imageset/hourglass-simple-high-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass-simple-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-duotone.imageset/hourglass-simple-high-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass-simple-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-duotone.imageset/hourglass-simple-low-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass-simple-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-duotone.imageset/hourglass-simple-low-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass-simple-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-duotone.imageset/hourglass-simple-medium-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass-simple-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-duotone.imageset/hourglass-simple-medium-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass-simple-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-duotone.imageset/hourglass-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-duotone.imageset/hourglass-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-duotone.imageset/hourglass-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-duotone.imageset/hourglass-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hourglass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-duotone.imageset/house-line-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/house-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-duotone.imageset/house-line-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/house-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-duotone.imageset/house-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/house-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-duotone.imageset/house-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/house-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-duotone.imageset/house-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/house.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-duotone.imageset/house-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/house.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-duotone.imageset/hurricane-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hurricane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-duotone.imageset/hurricane-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/hurricane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-duotone.imageset/ice-cream-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ice-cream.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-duotone.imageset/ice-cream-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ice-cream.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-duotone.imageset/identification-badge-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/identification-badge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-duotone.imageset/identification-badge-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/identification-badge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-duotone.imageset/identification-card-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/identification-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-duotone.imageset/identification-card-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/identification-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-duotone.imageset/image-broken-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/image-broken.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-duotone.imageset/image-broken-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/image-broken.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-duotone.imageset/image-square-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/image-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-duotone.imageset/image-square-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/image-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-duotone.imageset/image-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/image.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-duotone.imageset/image-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/image.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-duotone.imageset/images-square-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/images-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-duotone.imageset/images-square-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/images-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-duotone.imageset/images-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/images.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-duotone.imageset/images-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/images.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-duotone.imageset/infinity-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/infinity.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-duotone.imageset/infinity-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/infinity.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-duotone.imageset/info-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/info.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-duotone.imageset/info-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/info.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-duotone.imageset/instagram-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/instagram-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-duotone.imageset/instagram-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/instagram-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-duotone.imageset/intersect-square-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/intersect-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-duotone.imageset/intersect-square-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/intersect-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-duotone.imageset/intersect-three-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/intersect-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-duotone.imageset/intersect-three-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/intersect-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-duotone.imageset/intersect-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/intersect.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-duotone.imageset/intersect-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/intersect.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-duotone.imageset/intersection-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/intersection.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-duotone.imageset/intersection-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/intersection.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-duotone.imageset/invoice-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/invoice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-duotone.imageset/invoice-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/invoice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-duotone.imageset/island-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/island.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-duotone.imageset/island-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/island.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-duotone.imageset/jar-label-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/jar-label.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-duotone.imageset/jar-label-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/jar-label.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-duotone.imageset/jar-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/jar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-duotone.imageset/jar-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/jar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-duotone.imageset/jeep-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/jeep.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-duotone.imageset/jeep-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/jeep.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-duotone.imageset/joystick-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/joystick.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-duotone.imageset/joystick-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/joystick.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-duotone.imageset/kanban-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/kanban.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-duotone.imageset/kanban-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/kanban.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-duotone.imageset/key-return-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/key-return.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-duotone.imageset/key-return-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/key-return.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-duotone.imageset/key-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/key.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-duotone.imageset/key-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/key.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-duotone.imageset/keyboard-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/keyboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-duotone.imageset/keyboard-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/keyboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-duotone.imageset/keyhole-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/keyhole.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-duotone.imageset/keyhole-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/keyhole.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-duotone.imageset/knife-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/knife.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-duotone.imageset/knife-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/knife.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-duotone.imageset/ladder-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ladder-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-duotone.imageset/ladder-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ladder-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-duotone.imageset/ladder-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ladder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-duotone.imageset/ladder-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ladder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-duotone.imageset/lamp-pendant-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lamp-pendant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-duotone.imageset/lamp-pendant-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lamp-pendant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-duotone.imageset/lamp-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lamp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-duotone.imageset/lamp-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lamp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-duotone.imageset/laptop-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/laptop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-duotone.imageset/laptop-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/laptop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-duotone.imageset/lasso-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lasso.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-duotone.imageset/lasso-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lasso.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-duotone.imageset/lastfm-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lastfm-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-duotone.imageset/lastfm-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lastfm-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-duotone.imageset/layout-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/layout.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-duotone.imageset/layout-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/layout.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-duotone.imageset/leaf-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/leaf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-duotone.imageset/leaf-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/leaf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-duotone.imageset/lectern-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lectern.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-duotone.imageset/lectern-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lectern.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-duotone.imageset/lego-smiley-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lego-smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-duotone.imageset/lego-smiley-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lego-smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-duotone.imageset/lego-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lego.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-duotone.imageset/lego-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lego.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-duotone.imageset/less-than-or-equal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/less-than-or-equal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-duotone.imageset/less-than-or-equal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/less-than-or-equal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-duotone.imageset/less-than-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/less-than.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-duotone.imageset/less-than-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/less-than.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-duotone.imageset/letter-circle-h-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/letter-circle-h.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-duotone.imageset/letter-circle-h-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/letter-circle-h.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-duotone.imageset/letter-circle-p-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/letter-circle-p.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-duotone.imageset/letter-circle-p-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/letter-circle-p.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-duotone.imageset/letter-circle-v-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/letter-circle-v.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-duotone.imageset/letter-circle-v-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/letter-circle-v.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-duotone.imageset/lifebuoy-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lifebuoy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-duotone.imageset/lifebuoy-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lifebuoy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-duotone.imageset/lightbulb-filament-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lightbulb-filament.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-duotone.imageset/lightbulb-filament-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lightbulb-filament.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-duotone.imageset/lightbulb-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lightbulb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-duotone.imageset/lightbulb-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lightbulb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-duotone.imageset/lighthouse-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lighthouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-duotone.imageset/lighthouse-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lighthouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-duotone.imageset/lightning-a-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lightning-a.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-duotone.imageset/lightning-a-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lightning-a.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-duotone.imageset/lightning-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lightning-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-duotone.imageset/lightning-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lightning-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-duotone.imageset/lightning-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lightning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-duotone.imageset/lightning-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lightning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-duotone.imageset/line-segment-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/line-segment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-duotone.imageset/line-segment-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/line-segment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-duotone.imageset/line-segments-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/line-segments.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-duotone.imageset/line-segments-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/line-segments.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-duotone.imageset/line-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-duotone.imageset/line-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-duotone.imageset/link-break-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/link-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-duotone.imageset/link-break-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/link-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-duotone.imageset/link-simple-break-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/link-simple-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-duotone.imageset/link-simple-break-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/link-simple-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-duotone.imageset/link-simple-horizontal-break-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/link-simple-horizontal-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-duotone.imageset/link-simple-horizontal-break-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/link-simple-horizontal-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-duotone.imageset/link-simple-horizontal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/link-simple-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-duotone.imageset/link-simple-horizontal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/link-simple-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-duotone.imageset/link-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/link-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-duotone.imageset/link-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/link-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-duotone.imageset/link-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/link.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-duotone.imageset/link-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/link.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-duotone.imageset/linkedin-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/linkedin-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-duotone.imageset/linkedin-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/linkedin-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-duotone.imageset/linktree-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/linktree-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-duotone.imageset/linktree-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/linktree-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-duotone.imageset/linux-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/linux-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-duotone.imageset/linux-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/linux-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-duotone.imageset/list-bullets-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-bullets.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-duotone.imageset/list-bullets-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-bullets.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-duotone.imageset/list-checks-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-checks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-duotone.imageset/list-checks-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-checks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-duotone.imageset/list-dashes-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-dashes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-duotone.imageset/list-dashes-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-dashes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-duotone.imageset/list-heart-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-duotone.imageset/list-heart-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-duotone.imageset/list-magnifying-glass-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-duotone.imageset/list-magnifying-glass-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-duotone.imageset/list-numbers-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-numbers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-duotone.imageset/list-numbers-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-numbers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-duotone.imageset/list-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-duotone.imageset/list-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-duotone.imageset/list-star-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-duotone.imageset/list-star-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-duotone.imageset/list-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-duotone.imageset/list-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-duotone.imageset/lock-key-open-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock-key-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-duotone.imageset/lock-key-open-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock-key-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-duotone.imageset/lock-key-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock-key.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-duotone.imageset/lock-key-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock-key.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-duotone.imageset/lock-laminated-open-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock-laminated-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-duotone.imageset/lock-laminated-open-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock-laminated-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-duotone.imageset/lock-laminated-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock-laminated.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-duotone.imageset/lock-laminated-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock-laminated.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-duotone.imageset/lock-open-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-duotone.imageset/lock-open-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-duotone.imageset/lock-simple-open-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock-simple-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-duotone.imageset/lock-simple-open-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock-simple-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-duotone.imageset/lock-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-duotone.imageset/lock-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-duotone.imageset/lock-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-duotone.imageset/lock-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-duotone.imageset/lockers-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lockers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-duotone.imageset/lockers-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/lockers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-duotone.imageset/log-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/log.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-duotone.imageset/log-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/log.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-duotone.imageset/magic-wand-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/magic-wand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-duotone.imageset/magic-wand-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/magic-wand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-duotone.imageset/magnet-straight-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/magnet-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-duotone.imageset/magnet-straight-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/magnet-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-duotone.imageset/magnet-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/magnet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-duotone.imageset/magnet-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/magnet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-duotone.imageset/magnifying-glass-minus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/magnifying-glass-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-duotone.imageset/magnifying-glass-minus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/magnifying-glass-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-duotone.imageset/magnifying-glass-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/magnifying-glass-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-duotone.imageset/magnifying-glass-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/magnifying-glass-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-duotone.imageset/magnifying-glass-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-duotone.imageset/magnifying-glass-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-duotone.imageset/mailbox-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mailbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-duotone.imageset/mailbox-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mailbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-duotone.imageset/map-pin-area-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-pin-area.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-duotone.imageset/map-pin-area-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-pin-area.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-duotone.imageset/map-pin-line-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-pin-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-duotone.imageset/map-pin-line-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-pin-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-duotone.imageset/map-pin-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-pin-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-duotone.imageset/map-pin-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-pin-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-duotone.imageset/map-pin-simple-area-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-pin-simple-area.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-duotone.imageset/map-pin-simple-area-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-pin-simple-area.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-duotone.imageset/map-pin-simple-line-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-pin-simple-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-duotone.imageset/map-pin-simple-line-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-pin-simple-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-duotone.imageset/map-pin-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-pin-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-duotone.imageset/map-pin-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-pin-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-duotone.imageset/map-pin-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-pin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-duotone.imageset/map-pin-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-pin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-duotone.imageset/map-trifold-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-trifold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-duotone.imageset/map-trifold-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/map-trifold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-duotone.imageset/markdown-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/markdown-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-duotone.imageset/markdown-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/markdown-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-duotone.imageset/marker-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/marker-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-duotone.imageset/marker-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/marker-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-duotone.imageset/martini-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/martini.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-duotone.imageset/martini-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/martini.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-duotone.imageset/mask-happy-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mask-happy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-duotone.imageset/mask-happy-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mask-happy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-duotone.imageset/mask-sad-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mask-sad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-duotone.imageset/mask-sad-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mask-sad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-duotone.imageset/mastodon-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mastodon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-duotone.imageset/mastodon-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mastodon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-duotone.imageset/math-operations-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/math-operations.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-duotone.imageset/math-operations-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/math-operations.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-duotone.imageset/matrix-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/matrix-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-duotone.imageset/matrix-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/matrix-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-duotone.imageset/medal-military-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/medal-military.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-duotone.imageset/medal-military-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/medal-military.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-duotone.imageset/medal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/medal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-duotone.imageset/medal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/medal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-duotone.imageset/medium-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/medium-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-duotone.imageset/medium-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/medium-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-duotone.imageset/megaphone-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/megaphone-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-duotone.imageset/megaphone-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/megaphone-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-duotone.imageset/megaphone-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/megaphone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-duotone.imageset/megaphone-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/megaphone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-duotone.imageset/member-of-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/member-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-duotone.imageset/member-of-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/member-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-duotone.imageset/memory-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/memory.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-duotone.imageset/memory-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/memory.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-duotone.imageset/messenger-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/messenger-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-duotone.imageset/messenger-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/messenger-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-duotone.imageset/meta-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/meta-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-duotone.imageset/meta-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/meta-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-duotone.imageset/meteor-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/meteor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-duotone.imageset/meteor-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/meteor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-duotone.imageset/metronome-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/metronome.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-duotone.imageset/metronome-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/metronome.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-duotone.imageset/microphone-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microphone-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-duotone.imageset/microphone-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microphone-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-duotone.imageset/microphone-stage-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microphone-stage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-duotone.imageset/microphone-stage-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microphone-stage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-duotone.imageset/microphone-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microphone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-duotone.imageset/microphone-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microphone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-duotone.imageset/microscope-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microscope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-duotone.imageset/microscope-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microscope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-duotone.imageset/microsoft-excel-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microsoft-excel-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-duotone.imageset/microsoft-excel-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microsoft-excel-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-duotone.imageset/microsoft-outlook-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microsoft-outlook-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-duotone.imageset/microsoft-outlook-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microsoft-outlook-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-duotone.imageset/microsoft-powerpoint-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microsoft-powerpoint-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-duotone.imageset/microsoft-powerpoint-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microsoft-powerpoint-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-duotone.imageset/microsoft-teams-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microsoft-teams-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-duotone.imageset/microsoft-teams-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microsoft-teams-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-duotone.imageset/microsoft-word-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microsoft-word-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-duotone.imageset/microsoft-word-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/microsoft-word-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-duotone.imageset/minus-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/minus-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-duotone.imageset/minus-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/minus-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-duotone.imageset/minus-square-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/minus-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-duotone.imageset/minus-square-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/minus-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-duotone.imageset/minus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-duotone.imageset/minus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-duotone.imageset/money-wavy-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/money-wavy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-duotone.imageset/money-wavy-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/money-wavy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-duotone.imageset/money-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/money.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-duotone.imageset/money-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/money.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-duotone.imageset/monitor-arrow-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/monitor-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-duotone.imageset/monitor-arrow-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/monitor-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-duotone.imageset/monitor-play-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/monitor-play.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-duotone.imageset/monitor-play-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/monitor-play.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-duotone.imageset/monitor-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/monitor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-duotone.imageset/monitor-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/monitor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-duotone.imageset/moon-stars-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/moon-stars.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-duotone.imageset/moon-stars-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/moon-stars.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-duotone.imageset/moon-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/moon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-duotone.imageset/moon-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/moon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-duotone.imageset/moped-front-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/moped-front.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-duotone.imageset/moped-front-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/moped-front.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-duotone.imageset/moped-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/moped.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-duotone.imageset/moped-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/moped.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-duotone.imageset/mosque-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mosque.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-duotone.imageset/mosque-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mosque.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-duotone.imageset/motorcycle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/motorcycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-duotone.imageset/motorcycle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/motorcycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-duotone.imageset/mountains-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mountains.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-duotone.imageset/mountains-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mountains.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-duotone.imageset/mouse-left-click-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mouse-left-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-duotone.imageset/mouse-left-click-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mouse-left-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-duotone.imageset/mouse-middle-click-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mouse-middle-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-duotone.imageset/mouse-middle-click-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mouse-middle-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-duotone.imageset/mouse-right-click-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mouse-right-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-duotone.imageset/mouse-right-click-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mouse-right-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-duotone.imageset/mouse-scroll-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mouse-scroll.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-duotone.imageset/mouse-scroll-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mouse-scroll.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-duotone.imageset/mouse-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mouse-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-duotone.imageset/mouse-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mouse-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-duotone.imageset/mouse-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-duotone.imageset/mouse-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/mouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-duotone.imageset/music-note-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/music-note-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-duotone.imageset/music-note-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/music-note-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-duotone.imageset/music-note-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/music-note.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-duotone.imageset/music-note-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/music-note.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-duotone.imageset/music-notes-minus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/music-notes-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-duotone.imageset/music-notes-minus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/music-notes-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-duotone.imageset/music-notes-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/music-notes-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-duotone.imageset/music-notes-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/music-notes-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-duotone.imageset/music-notes-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/music-notes-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-duotone.imageset/music-notes-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/music-notes-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-duotone.imageset/music-notes-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/music-notes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-duotone.imageset/music-notes-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/music-notes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-duotone.imageset/navigation-arrow-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/navigation-arrow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-duotone.imageset/navigation-arrow-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/navigation-arrow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-duotone.imageset/needle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/needle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-duotone.imageset/needle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/needle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-duotone.imageset/network-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/network-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-duotone.imageset/network-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/network-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-duotone.imageset/network-x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/network-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-duotone.imageset/network-x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/network-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-duotone.imageset/network-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/network.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-duotone.imageset/network-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/network.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-duotone.imageset/newspaper-clipping-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/newspaper-clipping.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-duotone.imageset/newspaper-clipping-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/newspaper-clipping.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-duotone.imageset/newspaper-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/newspaper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-duotone.imageset/newspaper-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/newspaper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-duotone.imageset/not-equals-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/not-equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-duotone.imageset/not-equals-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/not-equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-duotone.imageset/not-member-of-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/not-member-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-duotone.imageset/not-member-of-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/not-member-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-duotone.imageset/not-subset-of-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/not-subset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-duotone.imageset/not-subset-of-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/not-subset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-duotone.imageset/not-superset-of-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/not-superset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-duotone.imageset/not-superset-of-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/not-superset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-duotone.imageset/notches-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/notches.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-duotone.imageset/notches-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/notches.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-duotone.imageset/note-blank-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/note-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-duotone.imageset/note-blank-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/note-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-duotone.imageset/note-pencil-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/note-pencil.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-duotone.imageset/note-pencil-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/note-pencil.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-duotone.imageset/note-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/note.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-duotone.imageset/note-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/note.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-duotone.imageset/notebook-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/notebook.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-duotone.imageset/notebook-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/notebook.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-duotone.imageset/notepad-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/notepad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-duotone.imageset/notepad-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/notepad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-duotone.imageset/notification-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/notification.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-duotone.imageset/notification-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/notification.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-duotone.imageset/notion-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/notion-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-duotone.imageset/notion-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/notion-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-duotone.imageset/nuclear-plant-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/nuclear-plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-duotone.imageset/nuclear-plant-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/nuclear-plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-duotone.imageset/number-circle-eight-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-duotone.imageset/number-circle-eight-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-duotone.imageset/number-circle-five-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-duotone.imageset/number-circle-five-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-duotone.imageset/number-circle-four-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-duotone.imageset/number-circle-four-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-duotone.imageset/number-circle-nine-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-duotone.imageset/number-circle-nine-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-duotone.imageset/number-circle-one-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-duotone.imageset/number-circle-one-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-duotone.imageset/number-circle-seven-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-duotone.imageset/number-circle-seven-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-duotone.imageset/number-circle-six-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-duotone.imageset/number-circle-six-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-duotone.imageset/number-circle-three-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-duotone.imageset/number-circle-three-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-duotone.imageset/number-circle-two-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-duotone.imageset/number-circle-two-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-duotone.imageset/number-circle-zero-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-duotone.imageset/number-circle-zero-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-circle-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-duotone.imageset/number-eight-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-duotone.imageset/number-eight-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-duotone.imageset/number-five-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-duotone.imageset/number-five-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-duotone.imageset/number-four-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-duotone.imageset/number-four-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-duotone.imageset/number-nine-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-duotone.imageset/number-nine-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-duotone.imageset/number-one-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-duotone.imageset/number-one-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-duotone.imageset/number-seven-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-duotone.imageset/number-seven-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-duotone.imageset/number-six-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-duotone.imageset/number-six-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-duotone.imageset/number-square-eight-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-duotone.imageset/number-square-eight-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-duotone.imageset/number-square-five-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-duotone.imageset/number-square-five-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-duotone.imageset/number-square-four-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-duotone.imageset/number-square-four-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-duotone.imageset/number-square-nine-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-duotone.imageset/number-square-nine-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-duotone.imageset/number-square-one-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-duotone.imageset/number-square-one-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-duotone.imageset/number-square-seven-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-duotone.imageset/number-square-seven-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-duotone.imageset/number-square-six-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-duotone.imageset/number-square-six-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-duotone.imageset/number-square-three-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-duotone.imageset/number-square-three-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-duotone.imageset/number-square-two-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-duotone.imageset/number-square-two-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-duotone.imageset/number-square-zero-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-duotone.imageset/number-square-zero-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-square-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-duotone.imageset/number-three-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-duotone.imageset/number-three-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-duotone.imageset/number-two-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-duotone.imageset/number-two-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-duotone.imageset/number-zero-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-duotone.imageset/number-zero-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/number-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-duotone.imageset/numpad-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/numpad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-duotone.imageset/numpad-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/numpad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-duotone.imageset/nut-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/nut.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-duotone.imageset/nut-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/nut.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-duotone.imageset/ny-times-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ny-times-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-duotone.imageset/ny-times-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ny-times-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-duotone.imageset/octagon-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/octagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-duotone.imageset/octagon-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/octagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-duotone.imageset/office-chair-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/office-chair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-duotone.imageset/office-chair-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/office-chair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-duotone.imageset/onigiri-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/onigiri.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-duotone.imageset/onigiri-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/onigiri.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-duotone.imageset/open-ai-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/open-ai-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-duotone.imageset/open-ai-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/open-ai-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-duotone.imageset/option-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/option.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-duotone.imageset/option-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/option.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-duotone.imageset/orange-slice-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/orange-slice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-duotone.imageset/orange-slice-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/orange-slice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-duotone.imageset/orange-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/orange.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-duotone.imageset/orange-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/orange.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-duotone.imageset/oven-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/oven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-duotone.imageset/oven-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/oven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-duotone.imageset/package-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/package.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-duotone.imageset/package-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/package.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-duotone.imageset/paint-brush-broad-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paint-brush-broad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-duotone.imageset/paint-brush-broad-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paint-brush-broad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-duotone.imageset/paint-brush-household-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paint-brush-household.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-duotone.imageset/paint-brush-household-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paint-brush-household.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-duotone.imageset/paint-brush-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paint-brush.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-duotone.imageset/paint-brush-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paint-brush.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-duotone.imageset/paint-bucket-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paint-bucket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-duotone.imageset/paint-bucket-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paint-bucket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-duotone.imageset/paint-roller-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paint-roller.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-duotone.imageset/paint-roller-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paint-roller.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-duotone.imageset/palette-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/palette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-duotone.imageset/palette-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/palette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-duotone.imageset/panorama-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/panorama.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-duotone.imageset/panorama-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/panorama.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-duotone.imageset/pants-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pants.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-duotone.imageset/pants-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pants.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-duotone.imageset/paper-plane-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paper-plane-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-duotone.imageset/paper-plane-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paper-plane-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-duotone.imageset/paper-plane-tilt-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paper-plane-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-duotone.imageset/paper-plane-tilt-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paper-plane-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-duotone.imageset/paper-plane-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paper-plane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-duotone.imageset/paper-plane-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paper-plane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-duotone.imageset/paperclip-horizontal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paperclip-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-duotone.imageset/paperclip-horizontal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paperclip-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-duotone.imageset/paperclip-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paperclip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-duotone.imageset/paperclip-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paperclip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-duotone.imageset/parachute-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/parachute.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-duotone.imageset/parachute-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/parachute.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-duotone.imageset/paragraph-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paragraph.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-duotone.imageset/paragraph-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paragraph.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-duotone.imageset/parallelogram-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/parallelogram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-duotone.imageset/parallelogram-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/parallelogram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-duotone.imageset/park-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/park.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-duotone.imageset/park-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/park.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-duotone.imageset/password-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/password.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-duotone.imageset/password-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/password.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-duotone.imageset/path-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/path.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-duotone.imageset/path-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/path.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-duotone.imageset/patreon-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/patreon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-duotone.imageset/patreon-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/patreon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-duotone.imageset/pause-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pause-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-duotone.imageset/pause-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pause-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-duotone.imageset/pause-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-duotone.imageset/pause-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-duotone.imageset/paw-print-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paw-print.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-duotone.imageset/paw-print-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paw-print.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-duotone.imageset/paypal-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paypal-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-duotone.imageset/paypal-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/paypal-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-duotone.imageset/peace-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/peace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-duotone.imageset/peace-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/peace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-duotone.imageset/pen-nib-straight-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pen-nib-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-duotone.imageset/pen-nib-straight-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pen-nib-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-duotone.imageset/pen-nib-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pen-nib.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-duotone.imageset/pen-nib-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pen-nib.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-duotone.imageset/pen-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-duotone.imageset/pen-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-duotone.imageset/pencil-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-duotone.imageset/pencil-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-duotone.imageset/pencil-line-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-duotone.imageset/pencil-line-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-duotone.imageset/pencil-ruler-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil-ruler.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-duotone.imageset/pencil-ruler-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil-ruler.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-duotone.imageset/pencil-simple-line-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil-simple-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-duotone.imageset/pencil-simple-line-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil-simple-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-duotone.imageset/pencil-simple-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-duotone.imageset/pencil-simple-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-duotone.imageset/pencil-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-duotone.imageset/pencil-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-duotone.imageset/pencil-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-duotone.imageset/pencil-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-duotone.imageset/pencil-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-duotone.imageset/pencil-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pencil.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-duotone.imageset/pentagon-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pentagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-duotone.imageset/pentagon-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pentagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-duotone.imageset/pentagram-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pentagram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-duotone.imageset/pentagram-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pentagram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-duotone.imageset/pepper-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pepper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-duotone.imageset/pepper-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pepper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-duotone.imageset/percent-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/percent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-duotone.imageset/percent-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/percent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-duotone.imageset/person-arms-spread-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-arms-spread.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-duotone.imageset/person-arms-spread-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-arms-spread.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-duotone.imageset/person-simple-bike-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-bike.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-duotone.imageset/person-simple-bike-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-bike.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-duotone.imageset/person-simple-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-duotone.imageset/person-simple-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-duotone.imageset/person-simple-hike-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-hike.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-duotone.imageset/person-simple-hike-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-hike.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-duotone.imageset/person-simple-run-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-run.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-duotone.imageset/person-simple-run-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-run.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-duotone.imageset/person-simple-ski-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-ski.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-duotone.imageset/person-simple-ski-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-ski.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-duotone.imageset/person-simple-snowboard-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-snowboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-duotone.imageset/person-simple-snowboard-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-snowboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-duotone.imageset/person-simple-swim-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-swim.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-duotone.imageset/person-simple-swim-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-swim.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-duotone.imageset/person-simple-tai-chi-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-tai-chi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-duotone.imageset/person-simple-tai-chi-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-tai-chi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-duotone.imageset/person-simple-throw-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-throw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-duotone.imageset/person-simple-throw-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-throw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-duotone.imageset/person-simple-walk-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-walk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-duotone.imageset/person-simple-walk-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple-walk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-duotone.imageset/person-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-duotone.imageset/person-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-duotone.imageset/person-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-duotone.imageset/person-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/person.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-duotone.imageset/perspective-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/perspective.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-duotone.imageset/perspective-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/perspective.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-duotone.imageset/phone-call-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-call.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-duotone.imageset/phone-call-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-call.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-duotone.imageset/phone-disconnect-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-disconnect.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-duotone.imageset/phone-disconnect-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-disconnect.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-duotone.imageset/phone-incoming-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-incoming.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-duotone.imageset/phone-incoming-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-incoming.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-duotone.imageset/phone-list-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-duotone.imageset/phone-list-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-duotone.imageset/phone-outgoing-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-outgoing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-duotone.imageset/phone-outgoing-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-outgoing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-duotone.imageset/phone-pause-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-duotone.imageset/phone-pause-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-duotone.imageset/phone-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-duotone.imageset/phone-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-duotone.imageset/phone-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-duotone.imageset/phone-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-duotone.imageset/phone-transfer-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-transfer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-duotone.imageset/phone-transfer-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-transfer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-duotone.imageset/phone-x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-duotone.imageset/phone-x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-duotone.imageset/phone-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-duotone.imageset/phone-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-duotone.imageset/phosphor-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phosphor-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-duotone.imageset/phosphor-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/phosphor-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-duotone.imageset/pi-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-duotone.imageset/pi-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-duotone.imageset/piano-keys-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/piano-keys.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-duotone.imageset/piano-keys-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/piano-keys.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-duotone.imageset/picnic-table-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/picnic-table.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-duotone.imageset/picnic-table-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/picnic-table.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-duotone.imageset/picture-in-picture-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/picture-in-picture.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-duotone.imageset/picture-in-picture-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/picture-in-picture.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-duotone.imageset/piggy-bank-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/piggy-bank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-duotone.imageset/piggy-bank-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/piggy-bank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-duotone.imageset/pill-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pill.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-duotone.imageset/pill-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pill.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-duotone.imageset/ping-pong-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ping-pong.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-duotone.imageset/ping-pong-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ping-pong.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-duotone.imageset/pint-glass-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pint-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-duotone.imageset/pint-glass-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pint-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-duotone.imageset/pinterest-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pinterest-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-duotone.imageset/pinterest-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pinterest-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-duotone.imageset/pinwheel-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pinwheel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-duotone.imageset/pinwheel-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pinwheel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-duotone.imageset/pipe-wrench-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pipe-wrench.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-duotone.imageset/pipe-wrench-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pipe-wrench.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-duotone.imageset/pipe-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pipe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-duotone.imageset/pipe-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pipe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-duotone.imageset/pix-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pix-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-duotone.imageset/pix-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pix-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-duotone.imageset/pizza-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pizza.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-duotone.imageset/pizza-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pizza.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-duotone.imageset/placeholder-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/placeholder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-duotone.imageset/placeholder-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/placeholder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-duotone.imageset/planet-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/planet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-duotone.imageset/planet-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/planet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-duotone.imageset/plant-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-duotone.imageset/plant-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-duotone.imageset/play-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/play-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-duotone.imageset/play-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/play-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-duotone.imageset/play-pause-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/play-pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-duotone.imageset/play-pause-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/play-pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-duotone.imageset/play-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/play.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-duotone.imageset/play-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/play.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-duotone.imageset/playlist-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/playlist.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-duotone.imageset/playlist-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/playlist.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-duotone.imageset/plug-charging-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plug-charging.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-duotone.imageset/plug-charging-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plug-charging.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-duotone.imageset/plug-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-duotone.imageset/plug-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-duotone.imageset/plugs-connected-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plugs-connected.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-duotone.imageset/plugs-connected-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plugs-connected.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-duotone.imageset/plugs-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plugs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-duotone.imageset/plugs-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plugs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-duotone.imageset/plus-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plus-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-duotone.imageset/plus-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plus-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-duotone.imageset/plus-minus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plus-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-duotone.imageset/plus-minus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plus-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-duotone.imageset/plus-square-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plus-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-duotone.imageset/plus-square-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plus-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-duotone.imageset/plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-duotone.imageset/plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-duotone.imageset/poker-chip-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/poker-chip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-duotone.imageset/poker-chip-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/poker-chip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-duotone.imageset/police-car-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/police-car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-duotone.imageset/police-car-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/police-car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-duotone.imageset/polygon-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/polygon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-duotone.imageset/polygon-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/polygon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-duotone.imageset/popcorn-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/popcorn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-duotone.imageset/popcorn-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/popcorn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-duotone.imageset/popsicle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/popsicle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-duotone.imageset/popsicle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/popsicle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-duotone.imageset/potted-plant-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/potted-plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-duotone.imageset/potted-plant-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/potted-plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-duotone.imageset/power-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/power.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-duotone.imageset/power-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/power.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-duotone.imageset/prescription-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/prescription.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-duotone.imageset/prescription-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/prescription.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-duotone.imageset/presentation-chart-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/presentation-chart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-duotone.imageset/presentation-chart-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/presentation-chart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-duotone.imageset/presentation-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/presentation.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-duotone.imageset/presentation-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/presentation.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-duotone.imageset/printer-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/printer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-duotone.imageset/printer-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/printer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-duotone.imageset/prohibit-inset-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/prohibit-inset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-duotone.imageset/prohibit-inset-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/prohibit-inset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-duotone.imageset/prohibit-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/prohibit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-duotone.imageset/prohibit-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/prohibit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-duotone.imageset/projector-screen-chart-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/projector-screen-chart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-duotone.imageset/projector-screen-chart-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/projector-screen-chart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-duotone.imageset/projector-screen-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/projector-screen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-duotone.imageset/projector-screen-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/projector-screen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-duotone.imageset/pulse-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pulse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-duotone.imageset/pulse-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/pulse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-duotone.imageset/push-pin-simple-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/push-pin-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-duotone.imageset/push-pin-simple-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/push-pin-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-duotone.imageset/push-pin-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/push-pin-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-duotone.imageset/push-pin-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/push-pin-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-duotone.imageset/push-pin-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/push-pin-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-duotone.imageset/push-pin-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/push-pin-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-duotone.imageset/push-pin-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/push-pin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-duotone.imageset/push-pin-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/push-pin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-duotone.imageset/puzzle-piece-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/puzzle-piece.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-duotone.imageset/puzzle-piece-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/puzzle-piece.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-duotone.imageset/qr-code-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/qr-code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-duotone.imageset/qr-code-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/qr-code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-duotone.imageset/question-mark-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/question-mark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-duotone.imageset/question-mark-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/question-mark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-duotone.imageset/question-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/question.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-duotone.imageset/question-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/question.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-duotone.imageset/queue-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/queue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-duotone.imageset/queue-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/queue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-duotone.imageset/quotes-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/quotes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-duotone.imageset/quotes-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/quotes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-duotone.imageset/rabbit-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rabbit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-duotone.imageset/rabbit-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rabbit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-duotone.imageset/racquet-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/racquet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-duotone.imageset/racquet-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/racquet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-duotone.imageset/radical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/radical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-duotone.imageset/radical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/radical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-duotone.imageset/radio-button-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/radio-button.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-duotone.imageset/radio-button-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/radio-button.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-duotone.imageset/radio-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/radio.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-duotone.imageset/radio-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/radio.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-duotone.imageset/radioactive-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/radioactive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-duotone.imageset/radioactive-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/radioactive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-duotone.imageset/rainbow-cloud-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rainbow-cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-duotone.imageset/rainbow-cloud-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rainbow-cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-duotone.imageset/rainbow-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rainbow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-duotone.imageset/rainbow-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rainbow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-duotone.imageset/ranking-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ranking.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-duotone.imageset/ranking-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ranking.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-duotone.imageset/read-cv-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/read-cv-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-duotone.imageset/read-cv-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/read-cv-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-duotone.imageset/receipt-x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/receipt-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-duotone.imageset/receipt-x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/receipt-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-duotone.imageset/receipt-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/receipt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-duotone.imageset/receipt-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/receipt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-duotone.imageset/record-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/record.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-duotone.imageset/record-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/record.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-duotone.imageset/rectangle-dashed-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rectangle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-duotone.imageset/rectangle-dashed-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rectangle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-duotone.imageset/rectangle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rectangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-duotone.imageset/rectangle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rectangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-duotone.imageset/recycle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/recycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-duotone.imageset/recycle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/recycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-duotone.imageset/reddit-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/reddit-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-duotone.imageset/reddit-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/reddit-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-duotone.imageset/repeat-once-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/repeat-once.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-duotone.imageset/repeat-once-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/repeat-once.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-duotone.imageset/repeat-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/repeat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-duotone.imageset/repeat-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/repeat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-duotone.imageset/replit-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/replit-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-duotone.imageset/replit-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/replit-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-duotone.imageset/resize-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/resize.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-duotone.imageset/resize-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/resize.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-duotone.imageset/rewind-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rewind-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-duotone.imageset/rewind-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rewind-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-duotone.imageset/rewind-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rewind.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-duotone.imageset/rewind-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rewind.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-duotone.imageset/road-horizon-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/road-horizon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-duotone.imageset/road-horizon-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/road-horizon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-duotone.imageset/robot-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/robot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-duotone.imageset/robot-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/robot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-duotone.imageset/rocket-launch-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rocket-launch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-duotone.imageset/rocket-launch-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rocket-launch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-duotone.imageset/rocket-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rocket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-duotone.imageset/rocket-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rocket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-duotone.imageset/rows-plus-bottom-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rows-plus-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-duotone.imageset/rows-plus-bottom-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rows-plus-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-duotone.imageset/rows-plus-top-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rows-plus-top.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-duotone.imageset/rows-plus-top-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rows-plus-top.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-duotone.imageset/rows-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rows.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-duotone.imageset/rows-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rows.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-duotone.imageset/rss-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rss-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-duotone.imageset/rss-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rss-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-duotone.imageset/rss-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rss.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-duotone.imageset/rss-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rss.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-duotone.imageset/rug-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-duotone.imageset/rug-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/rug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-duotone.imageset/ruler-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ruler.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-duotone.imageset/ruler-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ruler.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-duotone.imageset/sailboat-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sailboat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-duotone.imageset/sailboat-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sailboat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-duotone.imageset/scales-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scales.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-duotone.imageset/scales-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scales.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-duotone.imageset/scan-smiley-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scan-smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-duotone.imageset/scan-smiley-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scan-smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-duotone.imageset/scan-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scan.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-duotone.imageset/scan-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scan.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-duotone.imageset/scissors-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scissors.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-duotone.imageset/scissors-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scissors.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-duotone.imageset/scooter-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scooter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-duotone.imageset/scooter-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scooter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-duotone.imageset/screencast-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/screencast.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-duotone.imageset/screencast-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/screencast.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-duotone.imageset/screwdriver-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/screwdriver.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-duotone.imageset/screwdriver-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/screwdriver.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-duotone.imageset/scribble-loop-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scribble-loop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-duotone.imageset/scribble-loop-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scribble-loop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-duotone.imageset/scribble-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scribble.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-duotone.imageset/scribble-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scribble.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-duotone.imageset/scroll-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scroll.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-duotone.imageset/scroll-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/scroll.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-duotone.imageset/seal-check-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/seal-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-duotone.imageset/seal-check-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/seal-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-duotone.imageset/seal-percent-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/seal-percent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-duotone.imageset/seal-percent-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/seal-percent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-duotone.imageset/seal-question-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/seal-question.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-duotone.imageset/seal-question-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/seal-question.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-duotone.imageset/seal-warning-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/seal-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-duotone.imageset/seal-warning-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/seal-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-duotone.imageset/seal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/seal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-duotone.imageset/seal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/seal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-duotone.imageset/seat-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/seat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-duotone.imageset/seat-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/seat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-duotone.imageset/seatbelt-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/seatbelt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-duotone.imageset/seatbelt-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/seatbelt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-duotone.imageset/security-camera-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/security-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-duotone.imageset/security-camera-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/security-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-duotone.imageset/selection-all-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/selection-all.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-duotone.imageset/selection-all-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/selection-all.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-duotone.imageset/selection-background-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/selection-background.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-duotone.imageset/selection-background-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/selection-background.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-duotone.imageset/selection-foreground-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/selection-foreground.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-duotone.imageset/selection-foreground-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/selection-foreground.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-duotone.imageset/selection-inverse-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/selection-inverse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-duotone.imageset/selection-inverse-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/selection-inverse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-duotone.imageset/selection-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/selection-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-duotone.imageset/selection-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/selection-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-duotone.imageset/selection-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/selection-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-duotone.imageset/selection-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/selection-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-duotone.imageset/selection-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/selection.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-duotone.imageset/selection-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/selection.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-duotone.imageset/shapes-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shapes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-duotone.imageset/shapes-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shapes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-duotone.imageset/share-fat-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/share-fat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-duotone.imageset/share-fat-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/share-fat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-duotone.imageset/share-network-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/share-network.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-duotone.imageset/share-network-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/share-network.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-duotone.imageset/share-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/share.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-duotone.imageset/share-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/share.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-duotone.imageset/shield-check-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-duotone.imageset/shield-check-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-duotone.imageset/shield-checkered-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield-checkered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-duotone.imageset/shield-checkered-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield-checkered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-duotone.imageset/shield-chevron-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield-chevron.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-duotone.imageset/shield-chevron-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield-chevron.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-duotone.imageset/shield-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-duotone.imageset/shield-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-duotone.imageset/shield-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-duotone.imageset/shield-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-duotone.imageset/shield-star-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-duotone.imageset/shield-star-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-duotone.imageset/shield-warning-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-duotone.imageset/shield-warning-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-duotone.imageset/shield-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-duotone.imageset/shield-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shield.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-duotone.imageset/shipping-container-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shipping-container.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-duotone.imageset/shipping-container-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shipping-container.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-duotone.imageset/shirt-folded-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shirt-folded.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-duotone.imageset/shirt-folded-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shirt-folded.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-duotone.imageset/shooting-star-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shooting-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-duotone.imageset/shooting-star-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shooting-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-duotone.imageset/shopping-bag-open-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shopping-bag-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-duotone.imageset/shopping-bag-open-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shopping-bag-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-duotone.imageset/shopping-bag-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shopping-bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-duotone.imageset/shopping-bag-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shopping-bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-duotone.imageset/shopping-cart-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shopping-cart-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-duotone.imageset/shopping-cart-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shopping-cart-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-duotone.imageset/shopping-cart-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shopping-cart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-duotone.imageset/shopping-cart-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shopping-cart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-duotone.imageset/shovel-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shovel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-duotone.imageset/shovel-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shovel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-duotone.imageset/shower-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-duotone.imageset/shower-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-duotone.imageset/shrimp-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shrimp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-duotone.imageset/shrimp-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shrimp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-duotone.imageset/shuffle-angular-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shuffle-angular.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-duotone.imageset/shuffle-angular-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shuffle-angular.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-duotone.imageset/shuffle-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shuffle-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-duotone.imageset/shuffle-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shuffle-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-duotone.imageset/shuffle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shuffle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-duotone.imageset/shuffle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/shuffle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-duotone.imageset/sidebar-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sidebar-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-duotone.imageset/sidebar-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sidebar-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-duotone.imageset/sidebar-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sidebar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-duotone.imageset/sidebar-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sidebar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-duotone.imageset/sigma-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sigma.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-duotone.imageset/sigma-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sigma.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-duotone.imageset/sign-in-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sign-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-duotone.imageset/sign-in-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sign-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-duotone.imageset/sign-out-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sign-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-duotone.imageset/sign-out-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sign-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-duotone.imageset/signature-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/signature.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-duotone.imageset/signature-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/signature.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-duotone.imageset/signpost-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/signpost.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-duotone.imageset/signpost-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/signpost.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-duotone.imageset/sim-card-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sim-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-duotone.imageset/sim-card-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sim-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-duotone.imageset/siren-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/siren.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-duotone.imageset/siren-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/siren.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-duotone.imageset/sketch-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sketch-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-duotone.imageset/sketch-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sketch-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-duotone.imageset/skip-back-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/skip-back-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-duotone.imageset/skip-back-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/skip-back-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-duotone.imageset/skip-back-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/skip-back.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-duotone.imageset/skip-back-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/skip-back.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-duotone.imageset/skip-forward-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/skip-forward-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-duotone.imageset/skip-forward-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/skip-forward-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-duotone.imageset/skip-forward-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/skip-forward.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-duotone.imageset/skip-forward-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/skip-forward.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-duotone.imageset/skull-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/skull.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-duotone.imageset/skull-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/skull.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-duotone.imageset/skype-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/skype-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-duotone.imageset/skype-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/skype-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-duotone.imageset/slack-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/slack-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-duotone.imageset/slack-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/slack-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-duotone.imageset/sliders-horizontal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sliders-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-duotone.imageset/sliders-horizontal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sliders-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-duotone.imageset/sliders-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sliders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-duotone.imageset/sliders-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sliders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-duotone.imageset/slideshow-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/slideshow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-duotone.imageset/slideshow-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/slideshow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-duotone.imageset/smiley-angry-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-angry.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-duotone.imageset/smiley-angry-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-angry.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-duotone.imageset/smiley-blank-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-duotone.imageset/smiley-blank-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-duotone.imageset/smiley-meh-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-meh.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-duotone.imageset/smiley-meh-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-meh.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-duotone.imageset/smiley-melting-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-melting.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-duotone.imageset/smiley-melting-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-melting.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-duotone.imageset/smiley-nervous-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-nervous.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-duotone.imageset/smiley-nervous-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-nervous.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-duotone.imageset/smiley-sad-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-sad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-duotone.imageset/smiley-sad-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-sad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-duotone.imageset/smiley-sticker-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-sticker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-duotone.imageset/smiley-sticker-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-sticker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-duotone.imageset/smiley-wink-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-wink.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-duotone.imageset/smiley-wink-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-wink.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-duotone.imageset/smiley-x-eyes-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-x-eyes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-duotone.imageset/smiley-x-eyes-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley-x-eyes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-duotone.imageset/smiley-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-duotone.imageset/smiley-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-duotone.imageset/snapchat-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/snapchat-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-duotone.imageset/snapchat-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/snapchat-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-duotone.imageset/sneaker-move-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sneaker-move.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-duotone.imageset/sneaker-move-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sneaker-move.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-duotone.imageset/sneaker-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sneaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-duotone.imageset/sneaker-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sneaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-duotone.imageset/snowflake-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/snowflake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-duotone.imageset/snowflake-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/snowflake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-duotone.imageset/soccer-ball-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/soccer-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-duotone.imageset/soccer-ball-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/soccer-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-duotone.imageset/sock-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-duotone.imageset/sock-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-duotone.imageset/solar-panel-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/solar-panel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-duotone.imageset/solar-panel-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/solar-panel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-duotone.imageset/solar-roof-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/solar-roof.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-duotone.imageset/solar-roof-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/solar-roof.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-duotone.imageset/sort-ascending-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sort-ascending.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-duotone.imageset/sort-ascending-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sort-ascending.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-duotone.imageset/sort-descending-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sort-descending.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-duotone.imageset/sort-descending-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sort-descending.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-duotone.imageset/soundcloud-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/soundcloud-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-duotone.imageset/soundcloud-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/soundcloud-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-duotone.imageset/spade-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/spade.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-duotone.imageset/spade-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/spade.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-duotone.imageset/sparkle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sparkle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-duotone.imageset/sparkle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sparkle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-duotone.imageset/speaker-hifi-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-hifi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-duotone.imageset/speaker-hifi-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-hifi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-duotone.imageset/speaker-high-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-duotone.imageset/speaker-high-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-duotone.imageset/speaker-low-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-duotone.imageset/speaker-low-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-duotone.imageset/speaker-none-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-duotone.imageset/speaker-none-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-duotone.imageset/speaker-simple-high-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-simple-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-duotone.imageset/speaker-simple-high-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-simple-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-duotone.imageset/speaker-simple-low-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-simple-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-duotone.imageset/speaker-simple-low-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-simple-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-duotone.imageset/speaker-simple-none-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-simple-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-duotone.imageset/speaker-simple-none-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-simple-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-duotone.imageset/speaker-simple-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-duotone.imageset/speaker-simple-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-duotone.imageset/speaker-simple-x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-duotone.imageset/speaker-simple-x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-duotone.imageset/speaker-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-duotone.imageset/speaker-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-duotone.imageset/speaker-x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-duotone.imageset/speaker-x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speaker-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-duotone.imageset/speedometer-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speedometer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-duotone.imageset/speedometer-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/speedometer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-duotone.imageset/sphere-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sphere.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-duotone.imageset/sphere-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sphere.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-duotone.imageset/spinner-ball-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/spinner-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-duotone.imageset/spinner-ball-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/spinner-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-duotone.imageset/spinner-gap-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/spinner-gap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-duotone.imageset/spinner-gap-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/spinner-gap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-duotone.imageset/spinner-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/spinner.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-duotone.imageset/spinner-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/spinner.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-duotone.imageset/spiral-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/spiral.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-duotone.imageset/spiral-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/spiral.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-duotone.imageset/split-horizontal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/split-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-duotone.imageset/split-horizontal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/split-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-duotone.imageset/split-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/split-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-duotone.imageset/split-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/split-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-duotone.imageset/spotify-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/spotify-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-duotone.imageset/spotify-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/spotify-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-duotone.imageset/spray-bottle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/spray-bottle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-duotone.imageset/spray-bottle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/spray-bottle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-duotone.imageset/square-half-bottom-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/square-half-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-duotone.imageset/square-half-bottom-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/square-half-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-duotone.imageset/square-half-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/square-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-duotone.imageset/square-half-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/square-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-duotone.imageset/square-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/square-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-duotone.imageset/square-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/square-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-duotone.imageset/square-split-horizontal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/square-split-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-duotone.imageset/square-split-horizontal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/square-split-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-duotone.imageset/square-split-vertical-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/square-split-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-duotone.imageset/square-split-vertical-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/square-split-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-duotone.imageset/square-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-duotone.imageset/square-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-duotone.imageset/squares-four-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/squares-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-duotone.imageset/squares-four-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/squares-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-duotone.imageset/stack-minus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stack-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-duotone.imageset/stack-minus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stack-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-duotone.imageset/stack-overflow-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stack-overflow-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-duotone.imageset/stack-overflow-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stack-overflow-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-duotone.imageset/stack-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stack-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-duotone.imageset/stack-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stack-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-duotone.imageset/stack-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stack-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-duotone.imageset/stack-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stack-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-duotone.imageset/stack-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-duotone.imageset/stack-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-duotone.imageset/stairs-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stairs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-duotone.imageset/stairs-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stairs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-duotone.imageset/stamp-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stamp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-duotone.imageset/stamp-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stamp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-duotone.imageset/standard-definition-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/standard-definition.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-duotone.imageset/standard-definition-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/standard-definition.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-duotone.imageset/star-and-crescent-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/star-and-crescent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-duotone.imageset/star-and-crescent-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/star-and-crescent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-duotone.imageset/star-four-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/star-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-duotone.imageset/star-four-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/star-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-duotone.imageset/star-half-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/star-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-duotone.imageset/star-half-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/star-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-duotone.imageset/star-of-david-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/star-of-david.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-duotone.imageset/star-of-david-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/star-of-david.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-duotone.imageset/star-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-duotone.imageset/star-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-duotone.imageset/steam-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/steam-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-duotone.imageset/steam-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/steam-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-duotone.imageset/steering-wheel-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/steering-wheel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-duotone.imageset/steering-wheel-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/steering-wheel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-duotone.imageset/steps-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/steps.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-duotone.imageset/steps-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/steps.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-duotone.imageset/stethoscope-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stethoscope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-duotone.imageset/stethoscope-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stethoscope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-duotone.imageset/sticker-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sticker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-duotone.imageset/sticker-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sticker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-duotone.imageset/stool-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-duotone.imageset/stool-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-duotone.imageset/stop-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stop-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-duotone.imageset/stop-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stop-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-duotone.imageset/stop-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-duotone.imageset/stop-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-duotone.imageset/storefront-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/storefront.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-duotone.imageset/storefront-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/storefront.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-duotone.imageset/strategy-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/strategy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-duotone.imageset/strategy-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/strategy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-duotone.imageset/stripe-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stripe-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-duotone.imageset/stripe-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/stripe-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-duotone.imageset/student-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/student.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-duotone.imageset/student-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/student.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-duotone.imageset/subset-of-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/subset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-duotone.imageset/subset-of-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/subset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-duotone.imageset/subset-proper-of-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/subset-proper-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-duotone.imageset/subset-proper-of-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/subset-proper-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-duotone.imageset/subtitles-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/subtitles-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-duotone.imageset/subtitles-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/subtitles-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-duotone.imageset/subtitles-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/subtitles.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-duotone.imageset/subtitles-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/subtitles.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-duotone.imageset/subtract-square-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/subtract-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-duotone.imageset/subtract-square-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/subtract-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-duotone.imageset/subtract-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/subtract.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-duotone.imageset/subtract-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/subtract.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-duotone.imageset/subway-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/subway.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-duotone.imageset/subway-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/subway.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-duotone.imageset/suitcase-rolling-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/suitcase-rolling.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-duotone.imageset/suitcase-rolling-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/suitcase-rolling.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-duotone.imageset/suitcase-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/suitcase-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-duotone.imageset/suitcase-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/suitcase-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-duotone.imageset/suitcase-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/suitcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-duotone.imageset/suitcase-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/suitcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-duotone.imageset/sun-dim-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sun-dim.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-duotone.imageset/sun-dim-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sun-dim.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-duotone.imageset/sun-horizon-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sun-horizon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-duotone.imageset/sun-horizon-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sun-horizon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-duotone.imageset/sun-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sun.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-duotone.imageset/sun-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sun.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-duotone.imageset/sunglasses-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sunglasses.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-duotone.imageset/sunglasses-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sunglasses.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-duotone.imageset/superset-of-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/superset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-duotone.imageset/superset-of-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/superset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-duotone.imageset/superset-proper-of-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/superset-proper-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-duotone.imageset/superset-proper-of-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/superset-proper-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-duotone.imageset/swap-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/swap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-duotone.imageset/swap-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/swap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-duotone.imageset/swatches-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/swatches.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-duotone.imageset/swatches-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/swatches.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-duotone.imageset/swimming-pool-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/swimming-pool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-duotone.imageset/swimming-pool-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/swimming-pool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-duotone.imageset/sword-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sword.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-duotone.imageset/sword-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/sword.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-duotone.imageset/synagogue-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/synagogue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-duotone.imageset/synagogue-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/synagogue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-duotone.imageset/syringe-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/syringe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-duotone.imageset/syringe-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/syringe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-duotone.imageset/t-shirt-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/t-shirt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-duotone.imageset/t-shirt-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/t-shirt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-duotone.imageset/table-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/table.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-duotone.imageset/table-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/table.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-duotone.imageset/tabs-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tabs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-duotone.imageset/tabs-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tabs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-duotone.imageset/tag-chevron-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tag-chevron.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-duotone.imageset/tag-chevron-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tag-chevron.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-duotone.imageset/tag-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-duotone.imageset/tag-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-duotone.imageset/tag-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-duotone.imageset/tag-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-duotone.imageset/target-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/target.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-duotone.imageset/target-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/target.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-duotone.imageset/taxi-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/taxi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-duotone.imageset/taxi-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/taxi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-duotone.imageset/tea-bag-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tea-bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-duotone.imageset/tea-bag-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tea-bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-duotone.imageset/telegram-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/telegram-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-duotone.imageset/telegram-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/telegram-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-duotone.imageset/television-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/television-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-duotone.imageset/television-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/television-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-duotone.imageset/television-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/television.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-duotone.imageset/television-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/television.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-duotone.imageset/tennis-ball-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tennis-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-duotone.imageset/tennis-ball-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tennis-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-duotone.imageset/tent-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-duotone.imageset/tent-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-duotone.imageset/terminal-window-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/terminal-window.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-duotone.imageset/terminal-window-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/terminal-window.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-duotone.imageset/terminal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/terminal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-duotone.imageset/terminal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/terminal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-duotone.imageset/test-tube-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/test-tube.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-duotone.imageset/test-tube-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/test-tube.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-duotone.imageset/text-a-underline-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-a-underline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-duotone.imageset/text-a-underline-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-a-underline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-duotone.imageset/text-aa-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-aa.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-duotone.imageset/text-aa-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-aa.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-duotone.imageset/text-align-center-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-align-center.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-duotone.imageset/text-align-center-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-align-center.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-duotone.imageset/text-align-justify-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-align-justify.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-duotone.imageset/text-align-justify-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-align-justify.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-duotone.imageset/text-align-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-align-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-duotone.imageset/text-align-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-align-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-duotone.imageset/text-align-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-align-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-duotone.imageset/text-align-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-align-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-duotone.imageset/text-b-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-b.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-duotone.imageset/text-b-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-b.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-duotone.imageset/text-columns-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-columns.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-duotone.imageset/text-columns-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-columns.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-duotone.imageset/text-h-five-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-h-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-duotone.imageset/text-h-five-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-h-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-duotone.imageset/text-h-four-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-h-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-duotone.imageset/text-h-four-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-h-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-duotone.imageset/text-h-one-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-h-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-duotone.imageset/text-h-one-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-h-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-duotone.imageset/text-h-six-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-h-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-duotone.imageset/text-h-six-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-h-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-duotone.imageset/text-h-three-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-h-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-duotone.imageset/text-h-three-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-h-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-duotone.imageset/text-h-two-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-h-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-duotone.imageset/text-h-two-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-h-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-duotone.imageset/text-h-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-h.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-duotone.imageset/text-h-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-h.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-duotone.imageset/text-indent-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-indent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-duotone.imageset/text-indent-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-indent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-duotone.imageset/text-italic-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-italic.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-duotone.imageset/text-italic-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-italic.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-duotone.imageset/text-outdent-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-outdent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-duotone.imageset/text-outdent-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-outdent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-duotone.imageset/text-strikethrough-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-strikethrough.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-duotone.imageset/text-strikethrough-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-strikethrough.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-duotone.imageset/text-subscript-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-subscript.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-duotone.imageset/text-subscript-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-subscript.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-duotone.imageset/text-superscript-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-superscript.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-duotone.imageset/text-superscript-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-superscript.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-duotone.imageset/text-t-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-t-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-duotone.imageset/text-t-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-t-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-duotone.imageset/text-t-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-t.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-duotone.imageset/text-t-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-t.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-duotone.imageset/text-underline-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-underline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-duotone.imageset/text-underline-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/text-underline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-duotone.imageset/textbox-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/textbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-duotone.imageset/textbox-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/textbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-duotone.imageset/thermometer-cold-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/thermometer-cold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-duotone.imageset/thermometer-cold-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/thermometer-cold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-duotone.imageset/thermometer-hot-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/thermometer-hot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-duotone.imageset/thermometer-hot-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/thermometer-hot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-duotone.imageset/thermometer-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/thermometer-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-duotone.imageset/thermometer-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/thermometer-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-duotone.imageset/thermometer-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/thermometer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-duotone.imageset/thermometer-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/thermometer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-duotone.imageset/threads-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/threads-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-duotone.imageset/threads-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/threads-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-duotone.imageset/three-d-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/three-d.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-duotone.imageset/three-d-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/three-d.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-duotone.imageset/thumbs-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/thumbs-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-duotone.imageset/thumbs-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/thumbs-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-duotone.imageset/thumbs-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/thumbs-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-duotone.imageset/thumbs-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/thumbs-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-duotone.imageset/ticket-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ticket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-duotone.imageset/ticket-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/ticket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-duotone.imageset/tidal-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tidal-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-duotone.imageset/tidal-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tidal-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-duotone.imageset/tiktok-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tiktok-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-duotone.imageset/tiktok-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tiktok-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-duotone.imageset/tilde-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tilde.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-duotone.imageset/tilde-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tilde.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-duotone.imageset/timer-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/timer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-duotone.imageset/timer-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/timer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-duotone.imageset/tip-jar-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tip-jar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-duotone.imageset/tip-jar-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tip-jar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-duotone.imageset/tipi-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tipi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-duotone.imageset/tipi-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tipi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-duotone.imageset/tire-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-duotone.imageset/tire-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-duotone.imageset/toggle-left-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/toggle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-duotone.imageset/toggle-left-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/toggle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-duotone.imageset/toggle-right-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/toggle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-duotone.imageset/toggle-right-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/toggle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-duotone.imageset/toilet-paper-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/toilet-paper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-duotone.imageset/toilet-paper-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/toilet-paper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-duotone.imageset/toilet-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/toilet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-duotone.imageset/toilet-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/toilet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-duotone.imageset/toolbox-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/toolbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-duotone.imageset/toolbox-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/toolbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-duotone.imageset/tooth-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-duotone.imageset/tooth-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-duotone.imageset/tornado-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tornado.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-duotone.imageset/tornado-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tornado.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-duotone.imageset/tote-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tote-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-duotone.imageset/tote-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tote-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-duotone.imageset/tote-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tote.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-duotone.imageset/tote-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tote.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-duotone.imageset/towel-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/towel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-duotone.imageset/towel-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/towel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-duotone.imageset/tractor-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tractor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-duotone.imageset/tractor-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tractor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-duotone.imageset/trademark-registered-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trademark-registered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-duotone.imageset/trademark-registered-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trademark-registered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-duotone.imageset/trademark-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trademark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-duotone.imageset/trademark-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trademark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-duotone.imageset/traffic-cone-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/traffic-cone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-duotone.imageset/traffic-cone-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/traffic-cone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-duotone.imageset/traffic-sign-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/traffic-sign.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-duotone.imageset/traffic-sign-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/traffic-sign.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-duotone.imageset/traffic-signal-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/traffic-signal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-duotone.imageset/traffic-signal-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/traffic-signal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-duotone.imageset/train-regional-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/train-regional.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-duotone.imageset/train-regional-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/train-regional.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-duotone.imageset/train-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/train-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-duotone.imageset/train-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/train-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-duotone.imageset/train-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/train.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-duotone.imageset/train-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/train.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-duotone.imageset/tram-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-duotone.imageset/tram-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-duotone.imageset/translate-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/translate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-duotone.imageset/translate-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/translate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-duotone.imageset/trash-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trash-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-duotone.imageset/trash-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trash-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-duotone.imageset/trash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-duotone.imageset/trash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-duotone.imageset/archive-tray-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tray-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-duotone.imageset/archive-tray-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tray-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-duotone.imageset/tray-arrow-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tray-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-duotone.imageset/tray-arrow-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tray-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-duotone.imageset/tray-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tray.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-duotone.imageset/tray-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tray.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-duotone.imageset/treasure-chest-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/treasure-chest.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-duotone.imageset/treasure-chest-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/treasure-chest.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-duotone.imageset/tree-evergreen-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tree-evergreen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-duotone.imageset/tree-evergreen-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tree-evergreen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-duotone.imageset/tree-palm-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tree-palm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-duotone.imageset/tree-palm-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tree-palm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-duotone.imageset/tree-structure-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tree-structure.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-duotone.imageset/tree-structure-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tree-structure.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-duotone.imageset/tree-view-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tree-view.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-duotone.imageset/tree-view-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tree-view.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-duotone.imageset/tree-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tree.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-duotone.imageset/tree-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tree.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-duotone.imageset/trend-down-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trend-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-duotone.imageset/trend-down-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trend-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-duotone.imageset/trend-up-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trend-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-duotone.imageset/trend-up-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trend-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-duotone.imageset/triangle-dashed-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/triangle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-duotone.imageset/triangle-dashed-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/triangle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-duotone.imageset/triangle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/triangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-duotone.imageset/triangle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/triangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-duotone.imageset/trolley-suitcase-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trolley-suitcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-duotone.imageset/trolley-suitcase-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trolley-suitcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-duotone.imageset/trolley-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trolley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-duotone.imageset/trolley-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trolley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-duotone.imageset/trophy-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trophy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-duotone.imageset/trophy-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/trophy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-duotone.imageset/truck-trailer-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/truck-trailer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-duotone.imageset/truck-trailer-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/truck-trailer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-duotone.imageset/truck-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/truck.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-duotone.imageset/truck-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/truck.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-duotone.imageset/tumblr-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tumblr-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-duotone.imageset/tumblr-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/tumblr-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-duotone.imageset/twitch-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/twitch-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-duotone.imageset/twitch-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/twitch-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-duotone.imageset/twitter-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/twitter-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-duotone.imageset/twitter-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/twitter-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-duotone.imageset/umbrella-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/umbrella-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-duotone.imageset/umbrella-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/umbrella-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-duotone.imageset/umbrella-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/umbrella.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-duotone.imageset/umbrella-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/umbrella.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-duotone.imageset/union-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/union.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-duotone.imageset/union-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/union.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-duotone.imageset/unite-square-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/unite-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-duotone.imageset/unite-square-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/unite-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-duotone.imageset/unite-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/unite.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-duotone.imageset/unite-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/unite.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-duotone.imageset/upload-simple-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/upload-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-duotone.imageset/upload-simple-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/upload-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-duotone.imageset/upload-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/upload.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-duotone.imageset/upload-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/upload.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-duotone.imageset/usb-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/usb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-duotone.imageset/usb-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/usb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-duotone.imageset/user-check-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-duotone.imageset/user-check-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-duotone.imageset/user-circle-check-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-circle-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-duotone.imageset/user-circle-check-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-circle-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-duotone.imageset/user-circle-dashed-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-circle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-duotone.imageset/user-circle-dashed-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-circle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-duotone.imageset/user-circle-gear-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-circle-gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-duotone.imageset/user-circle-gear-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-circle-gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-duotone.imageset/user-circle-minus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-circle-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-duotone.imageset/user-circle-minus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-circle-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-duotone.imageset/user-circle-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-circle-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-duotone.imageset/user-circle-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-circle-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-duotone.imageset/user-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-duotone.imageset/user-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-duotone.imageset/user-focus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-focus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-duotone.imageset/user-focus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-focus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-duotone.imageset/user-gear-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-duotone.imageset/user-gear-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-duotone.imageset/user-list-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-duotone.imageset/user-list-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-duotone.imageset/user-minus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-duotone.imageset/user-minus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-duotone.imageset/user-plus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-duotone.imageset/user-plus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-duotone.imageset/user-rectangle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-rectangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-duotone.imageset/user-rectangle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-rectangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-duotone.imageset/user-sound-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-sound.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-duotone.imageset/user-sound-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-sound.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-duotone.imageset/user-square-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-duotone.imageset/user-square-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-duotone.imageset/user-switch-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-switch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-duotone.imageset/user-switch-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user-switch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-duotone.imageset/user-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-duotone.imageset/user-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-duotone.imageset/users-four-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/users-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-duotone.imageset/users-four-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/users-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-duotone.imageset/users-three-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/users-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-duotone.imageset/users-three-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/users-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-duotone.imageset/users-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/users.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-duotone.imageset/users-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/users.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-duotone.imageset/van-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/van.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-duotone.imageset/van-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/van.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-duotone.imageset/vault-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/vault.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-duotone.imageset/vault-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/vault.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-duotone.imageset/vector-three-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/vector-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-duotone.imageset/vector-three-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/vector-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-duotone.imageset/vector-two-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/vector-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-duotone.imageset/vector-two-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/vector-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-duotone.imageset/vibrate-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/vibrate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-duotone.imageset/vibrate-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/vibrate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-duotone.imageset/video-camera-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/video-camera-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-duotone.imageset/video-camera-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/video-camera-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-duotone.imageset/video-camera-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/video-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-duotone.imageset/video-camera-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/video-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-duotone.imageset/video-conference-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/video-conference.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-duotone.imageset/video-conference-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/video-conference.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-duotone.imageset/video-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/video.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-duotone.imageset/video-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/video.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-duotone.imageset/vignette-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/vignette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-duotone.imageset/vignette-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/vignette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-duotone.imageset/vinyl-record-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/vinyl-record.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-duotone.imageset/vinyl-record-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/vinyl-record.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-duotone.imageset/virtual-reality-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/virtual-reality.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-duotone.imageset/virtual-reality-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/virtual-reality.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-duotone.imageset/virus-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/virus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-duotone.imageset/virus-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/virus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-duotone.imageset/visor-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/visor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-duotone.imageset/visor-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/visor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-duotone.imageset/voicemail-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/voicemail.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-duotone.imageset/voicemail-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/voicemail.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-duotone.imageset/volleyball-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/volleyball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-duotone.imageset/volleyball-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/volleyball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-duotone.imageset/wall-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wall.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-duotone.imageset/wall-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wall.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-duotone.imageset/wallet-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wallet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-duotone.imageset/wallet-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wallet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-duotone.imageset/warehouse-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/warehouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-duotone.imageset/warehouse-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/warehouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-duotone.imageset/warning-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/warning-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-duotone.imageset/warning-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/warning-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-duotone.imageset/warning-diamond-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/warning-diamond.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-duotone.imageset/warning-diamond-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/warning-diamond.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-duotone.imageset/warning-octagon-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/warning-octagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-duotone.imageset/warning-octagon-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/warning-octagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-duotone.imageset/warning-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-duotone.imageset/warning-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-duotone.imageset/washing-machine-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/washing-machine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-duotone.imageset/washing-machine-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/washing-machine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-duotone.imageset/watch-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/watch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-duotone.imageset/watch-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/watch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-duotone.imageset/wave-sawtooth-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wave-sawtooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-duotone.imageset/wave-sawtooth-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wave-sawtooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-duotone.imageset/wave-sine-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wave-sine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-duotone.imageset/wave-sine-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wave-sine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-duotone.imageset/wave-square-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wave-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-duotone.imageset/wave-square-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wave-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-duotone.imageset/wave-triangle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wave-triangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-duotone.imageset/wave-triangle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wave-triangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-duotone.imageset/waveform-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/waveform-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-duotone.imageset/waveform-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/waveform-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-duotone.imageset/waveform-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/waveform.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-duotone.imageset/waveform-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/waveform.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-duotone.imageset/waves-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/waves.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-duotone.imageset/waves-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/waves.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-duotone.imageset/webcam-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/webcam-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-duotone.imageset/webcam-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/webcam-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-duotone.imageset/webcam-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/webcam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-duotone.imageset/webcam-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/webcam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-duotone.imageset/webhooks-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/webhooks-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-duotone.imageset/webhooks-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/webhooks-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-duotone.imageset/wechat-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wechat-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-duotone.imageset/wechat-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wechat-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-duotone.imageset/whatsapp-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/whatsapp-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-duotone.imageset/whatsapp-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/whatsapp-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-duotone.imageset/wheelchair-motion-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wheelchair-motion.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-duotone.imageset/wheelchair-motion-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wheelchair-motion.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-duotone.imageset/wheelchair-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wheelchair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-duotone.imageset/wheelchair-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wheelchair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-duotone.imageset/wifi-high-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wifi-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-duotone.imageset/wifi-high-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wifi-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-duotone.imageset/wifi-low-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wifi-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-duotone.imageset/wifi-low-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wifi-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-duotone.imageset/wifi-medium-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wifi-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-duotone.imageset/wifi-medium-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wifi-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-duotone.imageset/wifi-none-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wifi-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-duotone.imageset/wifi-none-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wifi-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-duotone.imageset/wifi-slash-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wifi-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-duotone.imageset/wifi-slash-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wifi-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-duotone.imageset/wifi-x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wifi-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-duotone.imageset/wifi-x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wifi-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-duotone.imageset/wind-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wind.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-duotone.imageset/wind-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wind.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-duotone.imageset/windmill-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/windmill.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-duotone.imageset/windmill-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/windmill.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-duotone.imageset/windows-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/windows-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-duotone.imageset/windows-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/windows-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-duotone.imageset/wine-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-duotone.imageset/wine-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-duotone.imageset/wrench-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wrench.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-duotone.imageset/wrench-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/wrench.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-duotone.imageset/x-circle-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/x-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-duotone.imageset/x-circle-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/x-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-duotone.imageset/x-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/x-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-duotone.imageset/x-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/x-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-duotone.imageset/x-square-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/x-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-duotone.imageset/x-square-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/x-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-duotone.imageset/x-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-duotone.imageset/x-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-duotone.imageset/yarn-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/yarn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-duotone.imageset/yarn-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/yarn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-duotone.imageset/yin-yang-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/yin-yang.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-duotone.imageset/yin-yang-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/yin-yang.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-duotone.imageset/youtube-logo-duotone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/duotone/youtube-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-duotone.imageset/youtube-logo-duotone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/duotone/youtube-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-fill.imageset/acorn-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/acorn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-fill.imageset/acorn-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/acorn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-fill.imageset/address-book-tabs-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/address-book-tabs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-fill.imageset/address-book-tabs-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/address-book-tabs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-fill.imageset/address-book-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/address-book.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-fill.imageset/address-book-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/address-book.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-fill.imageset/air-traffic-control-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/air-traffic-control.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-fill.imageset/air-traffic-control-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/air-traffic-control.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-fill.imageset/airplane-in-flight-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/airplane-in-flight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-fill.imageset/airplane-in-flight-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/airplane-in-flight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-fill.imageset/airplane-landing-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/airplane-landing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-fill.imageset/airplane-landing-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/airplane-landing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-fill.imageset/airplane-takeoff-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/airplane-takeoff.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-fill.imageset/airplane-takeoff-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/airplane-takeoff.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-fill.imageset/airplane-taxiing-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/airplane-taxiing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-fill.imageset/airplane-taxiing-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/airplane-taxiing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-fill.imageset/airplane-tilt-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/airplane-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-fill.imageset/airplane-tilt-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/airplane-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-fill.imageset/airplane-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/airplane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-fill.imageset/airplane-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/airplane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-fill.imageset/airplay-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/airplay.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-fill.imageset/airplay-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/airplay.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-fill.imageset/alarm-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/alarm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-fill.imageset/alarm-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/alarm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-fill.imageset/alien-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/alien.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-fill.imageset/alien-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/alien.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-fill.imageset/align-bottom-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-bottom-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-fill.imageset/align-bottom-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-bottom-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-fill.imageset/align-bottom-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-fill.imageset/align-bottom-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-fill.imageset/align-center-horizontal-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-center-horizontal-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-fill.imageset/align-center-horizontal-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-center-horizontal-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-fill.imageset/align-center-horizontal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-center-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-fill.imageset/align-center-horizontal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-center-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-fill.imageset/align-center-vertical-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-center-vertical-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-fill.imageset/align-center-vertical-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-center-vertical-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-fill.imageset/align-center-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-center-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-fill.imageset/align-center-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-center-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-fill.imageset/align-left-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-left-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-fill.imageset/align-left-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-left-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-fill.imageset/align-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-fill.imageset/align-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-fill.imageset/align-right-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-right-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-fill.imageset/align-right-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-right-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-fill.imageset/align-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-fill.imageset/align-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-fill.imageset/align-top-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-top-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-fill.imageset/align-top-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-top-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-fill.imageset/align-top-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-top.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-fill.imageset/align-top-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/align-top.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-fill.imageset/amazon-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/amazon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-fill.imageset/amazon-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/amazon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-fill.imageset/ambulance-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/ambulance.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-fill.imageset/ambulance-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/ambulance.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-fill.imageset/anchor-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/anchor-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-fill.imageset/anchor-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/anchor-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-fill.imageset/anchor-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/anchor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-fill.imageset/anchor-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/anchor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-fill.imageset/android-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/android-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-fill.imageset/android-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/android-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-fill.imageset/angle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/angle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-fill.imageset/angle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/angle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-fill.imageset/angular-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/angular-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-fill.imageset/angular-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/angular-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-fill.imageset/aperture-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/aperture.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-fill.imageset/aperture-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/aperture.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-fill.imageset/app-store-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/app-store-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-fill.imageset/app-store-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/app-store-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-fill.imageset/app-window-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/app-window.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-fill.imageset/app-window-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/app-window.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-fill.imageset/apple-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/apple-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-fill.imageset/apple-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/apple-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-fill.imageset/apple-podcasts-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/apple-podcasts-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-fill.imageset/apple-podcasts-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/apple-podcasts-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-fill.imageset/approximate-equals-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/approximate-equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-fill.imageset/approximate-equals-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/approximate-equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-fill.imageset/archive-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/archive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-fill.imageset/archive-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/archive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-fill.imageset/armchair-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/armchair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-fill.imageset/armchair-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/armchair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-fill.imageset/arrow-arc-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-arc-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-fill.imageset/arrow-arc-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-arc-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-fill.imageset/arrow-arc-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-arc-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-fill.imageset/arrow-arc-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-arc-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-fill.imageset/arrow-bend-double-up-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-double-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-fill.imageset/arrow-bend-double-up-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-double-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-fill.imageset/arrow-bend-double-up-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-double-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-fill.imageset/arrow-bend-double-up-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-double-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-fill.imageset/arrow-bend-down-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-fill.imageset/arrow-bend-down-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-fill.imageset/arrow-bend-down-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-fill.imageset/arrow-bend-down-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-fill.imageset/arrow-bend-left-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-fill.imageset/arrow-bend-left-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-fill.imageset/arrow-bend-left-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-fill.imageset/arrow-bend-left-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-fill.imageset/arrow-bend-right-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-fill.imageset/arrow-bend-right-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-fill.imageset/arrow-bend-right-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-fill.imageset/arrow-bend-right-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-fill.imageset/arrow-bend-up-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-fill.imageset/arrow-bend-up-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-fill.imageset/arrow-bend-up-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-fill.imageset/arrow-bend-up-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-bend-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-fill.imageset/arrow-circle-down-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-fill.imageset/arrow-circle-down-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-fill.imageset/arrow-circle-down-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-fill.imageset/arrow-circle-down-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-fill.imageset/arrow-circle-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-fill.imageset/arrow-circle-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-fill.imageset/arrow-circle-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-fill.imageset/arrow-circle-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-fill.imageset/arrow-circle-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-fill.imageset/arrow-circle-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-fill.imageset/arrow-circle-up-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-fill.imageset/arrow-circle-up-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-fill.imageset/arrow-circle-up-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-fill.imageset/arrow-circle-up-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-fill.imageset/arrow-circle-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-fill.imageset/arrow-circle-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-circle-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-fill.imageset/arrow-clockwise-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-fill.imageset/arrow-clockwise-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-fill.imageset/arrow-counter-clockwise-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-fill.imageset/arrow-counter-clockwise-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-fill.imageset/arrow-down-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-fill.imageset/arrow-down-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-fill.imageset/arrow-down-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-fill.imageset/arrow-down-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-fill.imageset/arrow-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-fill.imageset/arrow-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-fill.imageset/arrow-elbow-down-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-fill.imageset/arrow-elbow-down-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-fill.imageset/arrow-elbow-down-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-fill.imageset/arrow-elbow-down-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-fill.imageset/arrow-elbow-left-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-fill.imageset/arrow-elbow-left-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-fill.imageset/arrow-elbow-left-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-fill.imageset/arrow-elbow-left-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-fill.imageset/arrow-elbow-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-fill.imageset/arrow-elbow-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-fill.imageset/arrow-elbow-right-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-fill.imageset/arrow-elbow-right-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-fill.imageset/arrow-elbow-right-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-fill.imageset/arrow-elbow-right-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-fill.imageset/arrow-elbow-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-fill.imageset/arrow-elbow-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-fill.imageset/arrow-elbow-up-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-fill.imageset/arrow-elbow-up-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-fill.imageset/arrow-elbow-up-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-fill.imageset/arrow-elbow-up-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-elbow-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-fill.imageset/arrow-fat-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-fill.imageset/arrow-fat-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-fill.imageset/arrow-fat-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-fill.imageset/arrow-fat-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-fill.imageset/arrow-fat-line-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-fill.imageset/arrow-fat-line-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-fill.imageset/arrow-fat-line-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-fill.imageset/arrow-fat-line-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-fill.imageset/arrow-fat-line-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-fill.imageset/arrow-fat-line-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-fill.imageset/arrow-fat-line-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-fill.imageset/arrow-fat-line-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-fill.imageset/arrow-fat-lines-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-lines-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-fill.imageset/arrow-fat-lines-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-lines-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-fill.imageset/arrow-fat-lines-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-lines-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-fill.imageset/arrow-fat-lines-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-lines-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-fill.imageset/arrow-fat-lines-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-lines-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-fill.imageset/arrow-fat-lines-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-lines-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-fill.imageset/arrow-fat-lines-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-lines-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-fill.imageset/arrow-fat-lines-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-lines-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-fill.imageset/arrow-fat-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-fill.imageset/arrow-fat-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-fill.imageset/arrow-fat-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-fill.imageset/arrow-fat-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-fat-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-fill.imageset/arrow-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-fill.imageset/arrow-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-fill.imageset/arrow-line-down-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-fill.imageset/arrow-line-down-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-fill.imageset/arrow-line-down-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-fill.imageset/arrow-line-down-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-fill.imageset/arrow-line-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-fill.imageset/arrow-line-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-fill.imageset/arrow-line-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-fill.imageset/arrow-line-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-fill.imageset/arrow-line-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-fill.imageset/arrow-line-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-fill.imageset/arrow-line-up-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-fill.imageset/arrow-line-up-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-fill.imageset/arrow-line-up-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-fill.imageset/arrow-line-up-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-fill.imageset/arrow-line-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-fill.imageset/arrow-line-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-fill.imageset/arrow-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-fill.imageset/arrow-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-fill.imageset/arrow-square-down-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-fill.imageset/arrow-square-down-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-fill.imageset/arrow-square-down-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-fill.imageset/arrow-square-down-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-fill.imageset/arrow-square-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-fill.imageset/arrow-square-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-fill.imageset/arrow-square-in-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-fill.imageset/arrow-square-in-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-fill.imageset/arrow-square-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-fill.imageset/arrow-square-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-fill.imageset/arrow-square-out-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-fill.imageset/arrow-square-out-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-fill.imageset/arrow-square-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-fill.imageset/arrow-square-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-fill.imageset/arrow-square-up-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-fill.imageset/arrow-square-up-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-fill.imageset/arrow-square-up-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-fill.imageset/arrow-square-up-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-fill.imageset/arrow-square-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-fill.imageset/arrow-square-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-square-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-fill.imageset/arrow-u-down-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-fill.imageset/arrow-u-down-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-fill.imageset/arrow-u-down-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-fill.imageset/arrow-u-down-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-fill.imageset/arrow-u-left-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-fill.imageset/arrow-u-left-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-fill.imageset/arrow-u-left-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-fill.imageset/arrow-u-left-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-fill.imageset/arrow-u-right-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-fill.imageset/arrow-u-right-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-fill.imageset/arrow-u-right-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-fill.imageset/arrow-u-right-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-fill.imageset/arrow-u-up-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-fill.imageset/arrow-u-up-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-fill.imageset/arrow-u-up-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-fill.imageset/arrow-u-up-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-u-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-fill.imageset/arrow-up-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-fill.imageset/arrow-up-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-fill.imageset/arrow-up-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-fill.imageset/arrow-up-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-fill.imageset/arrow-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-fill.imageset/arrow-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-fill.imageset/arrows-clockwise-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-fill.imageset/arrows-clockwise-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-fill.imageset/arrows-counter-clockwise-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-fill.imageset/arrows-counter-clockwise-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-fill.imageset/arrows-down-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-down-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-fill.imageset/arrows-down-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-down-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-fill.imageset/arrows-horizontal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-fill.imageset/arrows-horizontal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-fill.imageset/arrows-in-cardinal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-in-cardinal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-fill.imageset/arrows-in-cardinal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-in-cardinal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-fill.imageset/arrows-in-line-horizontal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-in-line-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-fill.imageset/arrows-in-line-horizontal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-in-line-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-fill.imageset/arrows-in-line-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-in-line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-fill.imageset/arrows-in-line-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-in-line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-fill.imageset/arrows-in-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-in-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-fill.imageset/arrows-in-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-in-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-fill.imageset/arrows-in-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-fill.imageset/arrows-in-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-fill.imageset/arrows-left-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-left-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-fill.imageset/arrows-left-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-left-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-fill.imageset/arrows-merge-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-merge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-fill.imageset/arrows-merge-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-merge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-fill.imageset/arrows-out-cardinal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-out-cardinal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-fill.imageset/arrows-out-cardinal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-out-cardinal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-fill.imageset/arrows-out-line-horizontal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-out-line-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-fill.imageset/arrows-out-line-horizontal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-out-line-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-fill.imageset/arrows-out-line-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-out-line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-fill.imageset/arrows-out-line-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-out-line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-fill.imageset/arrows-out-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-out-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-fill.imageset/arrows-out-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-out-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-fill.imageset/arrows-out-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-fill.imageset/arrows-out-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-fill.imageset/arrows-split-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-split.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-fill.imageset/arrows-split-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-split.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-fill.imageset/arrows-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-fill.imageset/arrows-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/arrows-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-fill.imageset/article-medium-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/article-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-fill.imageset/article-medium-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/article-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-fill.imageset/article-ny-times-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/article-ny-times.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-fill.imageset/article-ny-times-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/article-ny-times.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-fill.imageset/article-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/article.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-fill.imageset/article-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/article.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-fill.imageset/asclepius-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/asclepius.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-fill.imageset/asclepius-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/asclepius.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-fill.imageset/asterisk-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/asterisk-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-fill.imageset/asterisk-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/asterisk-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-fill.imageset/asterisk-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/asterisk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-fill.imageset/asterisk-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/asterisk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-fill.imageset/at-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/at.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-fill.imageset/at-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/at.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-fill.imageset/atom-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/atom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-fill.imageset/atom-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/atom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-fill.imageset/avocado-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/avocado.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-fill.imageset/avocado-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/avocado.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-fill.imageset/axe-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/axe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-fill.imageset/axe-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/axe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-fill.imageset/baby-carriage-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/baby-carriage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-fill.imageset/baby-carriage-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/baby-carriage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-fill.imageset/baby-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/baby.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-fill.imageset/baby-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/baby.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-fill.imageset/backpack-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/backpack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-fill.imageset/backpack-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/backpack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-fill.imageset/backspace-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/backspace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-fill.imageset/backspace-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/backspace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-fill.imageset/bag-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-fill.imageset/bag-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-fill.imageset/bag-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-fill.imageset/bag-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-fill.imageset/balloon-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/balloon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-fill.imageset/balloon-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/balloon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-fill.imageset/bandaids-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bandaids.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-fill.imageset/bandaids-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bandaids.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-fill.imageset/bank-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-fill.imageset/bank-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-fill.imageset/barbell-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/barbell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-fill.imageset/barbell-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/barbell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-fill.imageset/barcode-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/barcode.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-fill.imageset/barcode-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/barcode.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-fill.imageset/barn-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/barn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-fill.imageset/barn-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/barn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-fill.imageset/barricade-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/barricade.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-fill.imageset/barricade-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/barricade.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-fill.imageset/baseball-cap-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/baseball-cap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-fill.imageset/baseball-cap-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/baseball-cap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-fill.imageset/baseball-helmet-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/baseball-helmet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-fill.imageset/baseball-helmet-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/baseball-helmet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-fill.imageset/baseball-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/baseball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-fill.imageset/baseball-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/baseball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-fill.imageset/basket-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/basket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-fill.imageset/basket-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/basket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-fill.imageset/basketball-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/basketball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-fill.imageset/basketball-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/basketball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-fill.imageset/bathtub-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bathtub.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-fill.imageset/bathtub-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bathtub.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-fill.imageset/battery-charging-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-charging-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-fill.imageset/battery-charging-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-charging-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-fill.imageset/battery-charging-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-charging.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-fill.imageset/battery-charging-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-charging.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty.imageset/battery-empty.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty.imageset/battery-empty.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-fill.imageset/battery-full-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-fill.imageset/battery-full-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-fill.imageset/battery-high-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-fill.imageset/battery-high-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-fill.imageset/battery-low-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-fill.imageset/battery-low-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-fill.imageset/battery-medium-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-fill.imageset/battery-medium-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-fill.imageset/battery-plus-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-plus-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-fill.imageset/battery-plus-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-plus-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-fill.imageset/battery-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-fill.imageset/battery-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty.imageset/battery-vertical-empty.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-vertical-empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty.imageset/battery-vertical-empty.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-vertical-empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-fill.imageset/battery-vertical-full-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-vertical-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-fill.imageset/battery-vertical-full-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-vertical-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-fill.imageset/battery-vertical-high-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-vertical-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-fill.imageset/battery-vertical-high-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-vertical-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-fill.imageset/battery-vertical-low-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-vertical-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-fill.imageset/battery-vertical-low-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-vertical-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-fill.imageset/battery-vertical-medium-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-vertical-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-fill.imageset/battery-vertical-medium-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-vertical-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-fill.imageset/battery-warning-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-warning-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-fill.imageset/battery-warning-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-warning-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-fill.imageset/battery-warning-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-fill.imageset/battery-warning-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/battery-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-fill.imageset/beach-ball-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/beach-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-fill.imageset/beach-ball-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/beach-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-fill.imageset/beanie-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/beanie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-fill.imageset/beanie-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/beanie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-fill.imageset/bed-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-fill.imageset/bed-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-fill.imageset/beer-bottle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/beer-bottle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-fill.imageset/beer-bottle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/beer-bottle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-fill.imageset/beer-stein-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/beer-stein.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-fill.imageset/beer-stein-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/beer-stein.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-fill.imageset/behance-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/behance-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-fill.imageset/behance-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/behance-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-fill.imageset/bell-ringing-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell-ringing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-fill.imageset/bell-ringing-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell-ringing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-fill.imageset/bell-simple-ringing-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell-simple-ringing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-fill.imageset/bell-simple-ringing-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell-simple-ringing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-fill.imageset/bell-simple-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-fill.imageset/bell-simple-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-fill.imageset/bell-simple-z-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell-simple-z.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-fill.imageset/bell-simple-z-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell-simple-z.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-fill.imageset/bell-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-fill.imageset/bell-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-fill.imageset/bell-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-fill.imageset/bell-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-fill.imageset/bell-z-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell-z.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-fill.imageset/bell-z-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell-z.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-fill.imageset/bell-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-fill.imageset/bell-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-fill.imageset/belt-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/belt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-fill.imageset/belt-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/belt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-fill.imageset/bezier-curve-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bezier-curve.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-fill.imageset/bezier-curve-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bezier-curve.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-fill.imageset/bicycle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bicycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-fill.imageset/bicycle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bicycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-fill.imageset/binary-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/binary.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-fill.imageset/binary-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/binary.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-fill.imageset/binoculars-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/binoculars.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-fill.imageset/binoculars-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/binoculars.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-fill.imageset/biohazard-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/biohazard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-fill.imageset/biohazard-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/biohazard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-fill.imageset/bird-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bird.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-fill.imageset/bird-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bird.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-fill.imageset/blueprint-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/blueprint.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-fill.imageset/blueprint-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/blueprint.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-fill.imageset/bluetooth-connected-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bluetooth-connected.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-fill.imageset/bluetooth-connected-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bluetooth-connected.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-fill.imageset/bluetooth-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bluetooth-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-fill.imageset/bluetooth-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bluetooth-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-fill.imageset/bluetooth-x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bluetooth-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-fill.imageset/bluetooth-x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bluetooth-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-fill.imageset/bluetooth-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bluetooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-fill.imageset/bluetooth-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bluetooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-fill.imageset/boat-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/boat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-fill.imageset/boat-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/boat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-fill.imageset/bomb-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bomb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-fill.imageset/bomb-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bomb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-fill.imageset/bone-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-fill.imageset/bone-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-fill.imageset/book-bookmark-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/book-bookmark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-fill.imageset/book-bookmark-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/book-bookmark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-fill.imageset/book-open-text-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/book-open-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-fill.imageset/book-open-text-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/book-open-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-fill.imageset/book-open-user-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/book-open-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-fill.imageset/book-open-user-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/book-open-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-fill.imageset/book-open-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/book-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-fill.imageset/book-open-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/book-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-fill.imageset/book-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/book.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-fill.imageset/book-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/book.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-fill.imageset/bookmark-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bookmark-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-fill.imageset/bookmark-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bookmark-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-fill.imageset/bookmark-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bookmark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-fill.imageset/bookmark-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bookmark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-fill.imageset/bookmarks-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bookmarks-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-fill.imageset/bookmarks-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bookmarks-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-fill.imageset/bookmarks-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bookmarks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-fill.imageset/bookmarks-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bookmarks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-fill.imageset/books-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/books.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-fill.imageset/books-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/books.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-fill.imageset/boot-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/boot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-fill.imageset/boot-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/boot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-fill.imageset/boules-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/boules.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-fill.imageset/boules-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/boules.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-fill.imageset/bounding-box-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bounding-box.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-fill.imageset/bounding-box-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bounding-box.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-fill.imageset/bowl-food-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bowl-food.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-fill.imageset/bowl-food-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bowl-food.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-fill.imageset/bowl-steam-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bowl-steam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-fill.imageset/bowl-steam-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bowl-steam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-fill.imageset/bowling-ball-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bowling-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-fill.imageset/bowling-ball-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bowling-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-fill.imageset/archive-box-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/box-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-fill.imageset/archive-box-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/box-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-fill.imageset/box-arrow-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/box-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-fill.imageset/box-arrow-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/box-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-fill.imageset/boxing-glove-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/boxing-glove.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-fill.imageset/boxing-glove-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/boxing-glove.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-fill.imageset/brackets-angle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/brackets-angle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-fill.imageset/brackets-angle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/brackets-angle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-fill.imageset/brackets-curly-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/brackets-curly.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-fill.imageset/brackets-curly-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/brackets-curly.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-fill.imageset/brackets-round-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/brackets-round.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-fill.imageset/brackets-round-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/brackets-round.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-fill.imageset/brackets-square-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/brackets-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-fill.imageset/brackets-square-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/brackets-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-fill.imageset/brain-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/brain.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-fill.imageset/brain-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/brain.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-fill.imageset/brandy-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/brandy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-fill.imageset/brandy-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/brandy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-fill.imageset/bread-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bread.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-fill.imageset/bread-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bread.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-fill.imageset/bridge-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bridge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-fill.imageset/bridge-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bridge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-fill.imageset/briefcase-metal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/briefcase-metal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-fill.imageset/briefcase-metal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/briefcase-metal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-fill.imageset/briefcase-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/briefcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-fill.imageset/briefcase-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/briefcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-fill.imageset/broadcast-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/broadcast.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-fill.imageset/broadcast-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/broadcast.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-fill.imageset/broom-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/broom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-fill.imageset/broom-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/broom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-fill.imageset/browser-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/browser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-fill.imageset/browser-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/browser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-fill.imageset/browsers-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/browsers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-fill.imageset/browsers-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/browsers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-fill.imageset/bug-beetle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bug-beetle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-fill.imageset/bug-beetle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bug-beetle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-fill.imageset/bug-droid-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bug-droid.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-fill.imageset/bug-droid-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bug-droid.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-fill.imageset/bug-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-fill.imageset/bug-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-fill.imageset/building-apartment-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/building-apartment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-fill.imageset/building-apartment-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/building-apartment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-fill.imageset/building-office-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/building-office.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-fill.imageset/building-office-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/building-office.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-fill.imageset/building-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/building.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-fill.imageset/building-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/building.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-fill.imageset/buildings-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/buildings.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-fill.imageset/buildings-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/buildings.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-fill.imageset/bulldozer-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bulldozer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-fill.imageset/bulldozer-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bulldozer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-fill.imageset/bus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/bus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-fill.imageset/bus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/bus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-fill.imageset/butterfly-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/butterfly.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-fill.imageset/butterfly-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/butterfly.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-fill.imageset/cable-car-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cable-car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-fill.imageset/cable-car-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cable-car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-fill.imageset/cactus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cactus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-fill.imageset/cactus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cactus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-fill.imageset/cake-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-fill.imageset/cake-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-fill.imageset/calculator-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/calculator.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-fill.imageset/calculator-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/calculator.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-fill.imageset/calendar-blank-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-fill.imageset/calendar-blank-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-fill.imageset/calendar-check-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-fill.imageset/calendar-check-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-fill.imageset/calendar-dot-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-dot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-fill.imageset/calendar-dot-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-dot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-fill.imageset/calendar-dots-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-fill.imageset/calendar-dots-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-fill.imageset/calendar-heart-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-fill.imageset/calendar-heart-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-fill.imageset/calendar-minus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-fill.imageset/calendar-minus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-fill.imageset/calendar-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-fill.imageset/calendar-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-fill.imageset/calendar-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-fill.imageset/calendar-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-fill.imageset/calendar-star-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-fill.imageset/calendar-star-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-fill.imageset/calendar-x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-fill.imageset/calendar-x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-fill.imageset/calendar-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-fill.imageset/calendar-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/calendar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-fill.imageset/call-bell-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/call-bell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-fill.imageset/call-bell-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/call-bell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-fill.imageset/camera-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/camera-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-fill.imageset/camera-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/camera-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-fill.imageset/camera-rotate-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/camera-rotate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-fill.imageset/camera-rotate-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/camera-rotate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-fill.imageset/camera-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/camera-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-fill.imageset/camera-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/camera-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-fill.imageset/camera-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-fill.imageset/camera-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-fill.imageset/campfire-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/campfire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-fill.imageset/campfire-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/campfire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-fill.imageset/car-battery-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/car-battery.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-fill.imageset/car-battery-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/car-battery.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-fill.imageset/car-profile-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/car-profile.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-fill.imageset/car-profile-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/car-profile.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-fill.imageset/car-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/car-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-fill.imageset/car-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/car-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-fill.imageset/car-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-fill.imageset/car-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-fill.imageset/cardholder-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cardholder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-fill.imageset/cardholder-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cardholder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-fill.imageset/cards-three-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cards-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-fill.imageset/cards-three-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cards-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-fill.imageset/cards-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cards.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-fill.imageset/cards-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cards.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-fill.imageset/caret-circle-double-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-double-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-fill.imageset/caret-circle-double-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-double-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-fill.imageset/caret-circle-double-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-double-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-fill.imageset/caret-circle-double-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-double-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-fill.imageset/caret-circle-double-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-double-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-fill.imageset/caret-circle-double-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-double-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-fill.imageset/caret-circle-double-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-double-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-fill.imageset/caret-circle-double-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-double-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-fill.imageset/caret-circle-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-fill.imageset/caret-circle-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-fill.imageset/caret-circle-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-fill.imageset/caret-circle-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-fill.imageset/caret-circle-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-fill.imageset/caret-circle-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-fill.imageset/caret-circle-up-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-up-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-fill.imageset/caret-circle-up-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-up-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-fill.imageset/caret-circle-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-fill.imageset/caret-circle-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-circle-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-fill.imageset/caret-double-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-double-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-fill.imageset/caret-double-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-double-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-fill.imageset/caret-double-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-double-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-fill.imageset/caret-double-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-double-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-fill.imageset/caret-double-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-double-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-fill.imageset/caret-double-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-double-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-fill.imageset/caret-double-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-double-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-fill.imageset/caret-double-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-double-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-fill.imageset/caret-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-fill.imageset/caret-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-fill.imageset/caret-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-fill.imageset/caret-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-fill.imageset/caret-line-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-fill.imageset/caret-line-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-fill.imageset/caret-line-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-fill.imageset/caret-line-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-fill.imageset/caret-line-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-fill.imageset/caret-line-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-fill.imageset/caret-line-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-fill.imageset/caret-line-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-fill.imageset/caret-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-fill.imageset/caret-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-fill.imageset/caret-up-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-up-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-fill.imageset/caret-up-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-up-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-fill.imageset/caret-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-fill.imageset/caret-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/caret-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-fill.imageset/carrot-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/carrot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-fill.imageset/carrot-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/carrot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-fill.imageset/cash-register-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cash-register.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-fill.imageset/cash-register-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cash-register.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-fill.imageset/cassette-tape-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cassette-tape.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-fill.imageset/cassette-tape-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cassette-tape.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-fill.imageset/castle-turret-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/castle-turret.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-fill.imageset/castle-turret-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/castle-turret.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-fill.imageset/cat-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-fill.imageset/cat-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-fill.imageset/cell-signal-full-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-signal-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-fill.imageset/cell-signal-full-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-signal-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-fill.imageset/cell-signal-high-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-signal-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-fill.imageset/cell-signal-high-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-signal-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-fill.imageset/cell-signal-low-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-signal-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-fill.imageset/cell-signal-low-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-signal-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-fill.imageset/cell-signal-medium-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-signal-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-fill.imageset/cell-signal-medium-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-signal-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-fill.imageset/cell-signal-none-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-signal-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-fill.imageset/cell-signal-none-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-signal-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-fill.imageset/cell-signal-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-signal-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-fill.imageset/cell-signal-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-signal-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-fill.imageset/cell-signal-x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-signal-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-fill.imageset/cell-signal-x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-signal-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-fill.imageset/cell-tower-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-fill.imageset/cell-tower-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cell-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-fill.imageset/certificate-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/certificate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-fill.imageset/certificate-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/certificate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-fill.imageset/chair-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-fill.imageset/chair-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-fill.imageset/chalkboard-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chalkboard-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-fill.imageset/chalkboard-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chalkboard-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-fill.imageset/chalkboard-teacher-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chalkboard-teacher.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-fill.imageset/chalkboard-teacher-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chalkboard-teacher.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-fill.imageset/chalkboard-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chalkboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-fill.imageset/chalkboard-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chalkboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-fill.imageset/champagne-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/champagne.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-fill.imageset/champagne-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/champagne.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-fill.imageset/charging-station-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/charging-station.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-fill.imageset/charging-station-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/charging-station.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-fill.imageset/chart-bar-horizontal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-bar-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-fill.imageset/chart-bar-horizontal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-bar-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-fill.imageset/chart-bar-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-bar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-fill.imageset/chart-bar-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-bar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-fill.imageset/chart-donut-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-donut.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-fill.imageset/chart-donut-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-donut.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-fill.imageset/chart-line-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-fill.imageset/chart-line-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-fill.imageset/chart-line-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-fill.imageset/chart-line-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-fill.imageset/chart-line-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-fill.imageset/chart-line-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-fill.imageset/chart-pie-slice-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-pie-slice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-fill.imageset/chart-pie-slice-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-pie-slice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-fill.imageset/chart-pie-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-pie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-fill.imageset/chart-pie-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-pie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-fill.imageset/chart-polar-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-polar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-fill.imageset/chart-polar-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-polar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-fill.imageset/chart-scatter-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-scatter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-fill.imageset/chart-scatter-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chart-scatter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-fill.imageset/chat-centered-dots-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-centered-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-fill.imageset/chat-centered-dots-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-centered-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-fill.imageset/chat-centered-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-centered-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-fill.imageset/chat-centered-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-centered-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-fill.imageset/chat-centered-text-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-centered-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-fill.imageset/chat-centered-text-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-centered-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-fill.imageset/chat-centered-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-centered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-fill.imageset/chat-centered-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-centered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-fill.imageset/chat-circle-dots-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-circle-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-fill.imageset/chat-circle-dots-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-circle-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-fill.imageset/chat-circle-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-circle-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-fill.imageset/chat-circle-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-circle-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-fill.imageset/chat-circle-text-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-circle-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-fill.imageset/chat-circle-text-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-circle-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-fill.imageset/chat-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-fill.imageset/chat-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-fill.imageset/chat-dots-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-fill.imageset/chat-dots-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-fill.imageset/chat-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-fill.imageset/chat-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-fill.imageset/chat-teardrop-dots-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-teardrop-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-fill.imageset/chat-teardrop-dots-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-teardrop-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-fill.imageset/chat-teardrop-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-teardrop-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-fill.imageset/chat-teardrop-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-teardrop-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-fill.imageset/chat-teardrop-text-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-teardrop-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-fill.imageset/chat-teardrop-text-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-teardrop-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-fill.imageset/chat-teardrop-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-teardrop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-fill.imageset/chat-teardrop-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-teardrop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-fill.imageset/chat-text-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-fill.imageset/chat-text-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-fill.imageset/chat-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-fill.imageset/chat-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-fill.imageset/chats-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chats-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-fill.imageset/chats-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chats-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-fill.imageset/chats-teardrop-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chats-teardrop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-fill.imageset/chats-teardrop-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chats-teardrop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-fill.imageset/chats-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chats.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-fill.imageset/chats-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chats.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-fill.imageset/check-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/check-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-fill.imageset/check-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/check-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-fill.imageset/check-fat-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/check-fat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-fill.imageset/check-fat-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/check-fat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-fill.imageset/check-square-offset-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/check-square-offset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-fill.imageset/check-square-offset-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/check-square-offset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-fill.imageset/check-square-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/check-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-fill.imageset/check-square-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/check-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fill.imageset/check-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fill.imageset/check-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-fill.imageset/checkerboard-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/checkerboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-fill.imageset/checkerboard-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/checkerboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-fill.imageset/checks-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/checks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-fill.imageset/checks-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/checks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-fill.imageset/cheers-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cheers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-fill.imageset/cheers-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cheers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-fill.imageset/cheese-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cheese.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-fill.imageset/cheese-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cheese.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-fill.imageset/chef-hat-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/chef-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-fill.imageset/chef-hat-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/chef-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-fill.imageset/cherries-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cherries.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-fill.imageset/cherries-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cherries.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-fill.imageset/church-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/church.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-fill.imageset/church-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/church.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-fill.imageset/cigarette-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cigarette-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-fill.imageset/cigarette-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cigarette-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-fill.imageset/cigarette-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cigarette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-fill.imageset/cigarette-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cigarette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-fill.imageset/circle-dashed-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/circle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-fill.imageset/circle-dashed-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/circle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-fill.imageset/circle-half-tilt-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/circle-half-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-fill.imageset/circle-half-tilt-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/circle-half-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-fill.imageset/circle-half-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/circle-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-fill.imageset/circle-half-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/circle-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-fill.imageset/circle-notch-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/circle-notch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-fill.imageset/circle-notch-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/circle-notch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-fill.imageset/circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-fill.imageset/circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-fill.imageset/circles-four-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/circles-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-fill.imageset/circles-four-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/circles-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-fill.imageset/circles-three-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/circles-three-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-fill.imageset/circles-three-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/circles-three-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-fill.imageset/circles-three-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/circles-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-fill.imageset/circles-three-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/circles-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-fill.imageset/circuitry-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/circuitry.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-fill.imageset/circuitry-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/circuitry.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-fill.imageset/city-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/city.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-fill.imageset/city-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/city.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-fill.imageset/clipboard-text-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/clipboard-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-fill.imageset/clipboard-text-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/clipboard-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-fill.imageset/clipboard-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/clipboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-fill.imageset/clipboard-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/clipboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-fill.imageset/clock-afternoon-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/clock-afternoon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-fill.imageset/clock-afternoon-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/clock-afternoon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-fill.imageset/clock-clockwise-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/clock-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-fill.imageset/clock-clockwise-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/clock-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-fill.imageset/clock-countdown-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/clock-countdown.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-fill.imageset/clock-countdown-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/clock-countdown.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-fill.imageset/clock-counter-clockwise-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/clock-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-fill.imageset/clock-counter-clockwise-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/clock-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-fill.imageset/clock-user-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/clock-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-fill.imageset/clock-user-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/clock-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-fill.imageset/clock-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/clock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-fill.imageset/clock-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/clock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-fill.imageset/closed-captioning-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/closed-captioning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-fill.imageset/closed-captioning-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/closed-captioning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-fill.imageset/cloud-arrow-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-fill.imageset/cloud-arrow-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-fill.imageset/cloud-arrow-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-fill.imageset/cloud-arrow-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-fill.imageset/cloud-check-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-fill.imageset/cloud-check-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-fill.imageset/cloud-fog-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-fog.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-fill.imageset/cloud-fog-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-fog.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-fill.imageset/cloud-lightning-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-lightning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-fill.imageset/cloud-lightning-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-lightning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-fill.imageset/cloud-moon-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-moon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-fill.imageset/cloud-moon-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-moon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-fill.imageset/cloud-rain-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-rain.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-fill.imageset/cloud-rain-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-rain.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-fill.imageset/cloud-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-fill.imageset/cloud-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-fill.imageset/cloud-snow-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-snow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-fill.imageset/cloud-snow-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-snow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-fill.imageset/cloud-sun-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-sun.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-fill.imageset/cloud-sun-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-sun.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-fill.imageset/cloud-warning-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-fill.imageset/cloud-warning-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-fill.imageset/cloud-x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-fill.imageset/cloud-x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fill.imageset/cloud-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fill.imageset/cloud-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-fill.imageset/clover-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/clover.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-fill.imageset/clover-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/clover.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-fill.imageset/club-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/club.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-fill.imageset/club-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/club.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-fill.imageset/coat-hanger-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/coat-hanger.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-fill.imageset/coat-hanger-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/coat-hanger.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-fill.imageset/coda-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/coda-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-fill.imageset/coda-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/coda-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-fill.imageset/code-block-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/code-block.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-fill.imageset/code-block-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/code-block.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-fill.imageset/code-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/code-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-fill.imageset/code-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/code-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-fill.imageset/code-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-fill.imageset/code-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-fill.imageset/codepen-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/codepen-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-fill.imageset/codepen-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/codepen-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-fill.imageset/codesandbox-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/codesandbox-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-fill.imageset/codesandbox-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/codesandbox-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-fill.imageset/coffee-bean-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/coffee-bean.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-fill.imageset/coffee-bean-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/coffee-bean.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-fill.imageset/coffee-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/coffee.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-fill.imageset/coffee-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/coffee.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-fill.imageset/coin-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/coin-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-fill.imageset/coin-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/coin-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-fill.imageset/coin-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/coin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-fill.imageset/coin-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/coin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-fill.imageset/coins-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/coins.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-fill.imageset/coins-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/coins.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-fill.imageset/columns-plus-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/columns-plus-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-fill.imageset/columns-plus-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/columns-plus-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-fill.imageset/columns-plus-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/columns-plus-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-fill.imageset/columns-plus-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/columns-plus-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-fill.imageset/columns-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/columns.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-fill.imageset/columns-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/columns.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-fill.imageset/command-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/command.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-fill.imageset/command-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/command.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-fill.imageset/compass-rose-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/compass-rose.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-fill.imageset/compass-rose-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/compass-rose.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-fill.imageset/compass-tool-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/compass-tool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-fill.imageset/compass-tool-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/compass-tool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-fill.imageset/compass-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/compass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-fill.imageset/compass-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/compass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-fill.imageset/computer-tower-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/computer-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-fill.imageset/computer-tower-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/computer-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-fill.imageset/confetti-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/confetti.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-fill.imageset/confetti-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/confetti.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-fill.imageset/contactless-payment-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/contactless-payment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-fill.imageset/contactless-payment-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/contactless-payment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-fill.imageset/control-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/control.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-fill.imageset/control-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/control.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-fill.imageset/cookie-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cookie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-fill.imageset/cookie-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cookie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-fill.imageset/cooking-pot-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cooking-pot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-fill.imageset/cooking-pot-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cooking-pot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-fill.imageset/copy-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/copy-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-fill.imageset/copy-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/copy-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-fill.imageset/copy-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/copy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-fill.imageset/copy-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/copy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-fill.imageset/copyleft-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/copyleft.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-fill.imageset/copyleft-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/copyleft.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-fill.imageset/copyright-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/copyright.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-fill.imageset/copyright-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/copyright.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-fill.imageset/corners-in-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/corners-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-fill.imageset/corners-in-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/corners-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-fill.imageset/corners-out-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/corners-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-fill.imageset/corners-out-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/corners-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-fill.imageset/couch-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/couch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-fill.imageset/couch-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/couch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-fill.imageset/court-basketball-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/court-basketball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-fill.imageset/court-basketball-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/court-basketball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-fill.imageset/cow-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-fill.imageset/cow-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-fill.imageset/cowboy-hat-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cowboy-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-fill.imageset/cowboy-hat-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cowboy-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-fill.imageset/cpu-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cpu.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-fill.imageset/cpu-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cpu.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-fill.imageset/crane-tower-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/crane-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-fill.imageset/crane-tower-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/crane-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-fill.imageset/crane-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/crane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-fill.imageset/crane-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/crane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-fill.imageset/credit-card-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/credit-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-fill.imageset/credit-card-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/credit-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-fill.imageset/cricket-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cricket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-fill.imageset/cricket-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cricket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-fill.imageset/crop-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/crop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-fill.imageset/crop-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/crop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-fill.imageset/cross-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cross.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-fill.imageset/cross-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cross.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-fill.imageset/crosshair-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/crosshair-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-fill.imageset/crosshair-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/crosshair-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-fill.imageset/crosshair-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/crosshair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-fill.imageset/crosshair-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/crosshair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-fill.imageset/crown-cross-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/crown-cross.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-fill.imageset/crown-cross-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/crown-cross.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-fill.imageset/crown-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/crown-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-fill.imageset/crown-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/crown-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-fill.imageset/crown-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/crown.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-fill.imageset/crown-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/crown.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-fill.imageset/cube-focus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cube-focus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-fill.imageset/cube-focus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cube-focus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-fill.imageset/cube-transparent-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cube-transparent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-fill.imageset/cube-transparent-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cube-transparent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-fill.imageset/cube-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cube.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-fill.imageset/cube-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cube.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-fill.imageset/currency-btc-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-btc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-fill.imageset/currency-btc-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-btc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-fill.imageset/currency-circle-dollar-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-circle-dollar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-fill.imageset/currency-circle-dollar-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-circle-dollar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-fill.imageset/currency-cny-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-cny.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-fill.imageset/currency-cny-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-cny.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-fill.imageset/currency-dollar-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-dollar-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-fill.imageset/currency-dollar-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-dollar-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-fill.imageset/currency-dollar-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-dollar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-fill.imageset/currency-dollar-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-dollar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-fill.imageset/currency-eth-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-eth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-fill.imageset/currency-eth-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-eth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-fill.imageset/currency-eur-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-eur.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-fill.imageset/currency-eur-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-eur.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-fill.imageset/currency-gbp-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-gbp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-fill.imageset/currency-gbp-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-gbp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-fill.imageset/currency-inr-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-inr.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-fill.imageset/currency-inr-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-inr.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-fill.imageset/currency-jpy-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-jpy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-fill.imageset/currency-jpy-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-jpy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-fill.imageset/currency-krw-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-krw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-fill.imageset/currency-krw-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-krw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-fill.imageset/currency-kzt-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-kzt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-fill.imageset/currency-kzt-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-kzt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-fill.imageset/currency-ngn-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-ngn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-fill.imageset/currency-ngn-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-ngn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-fill.imageset/currency-rub-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-rub.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-fill.imageset/currency-rub-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/currency-rub.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-fill.imageset/cursor-click-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cursor-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-fill.imageset/cursor-click-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cursor-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-fill.imageset/cursor-text-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cursor-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-fill.imageset/cursor-text-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cursor-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-fill.imageset/cursor-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cursor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-fill.imageset/cursor-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cursor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-fill.imageset/cylinder-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/cylinder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-fill.imageset/cylinder-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/cylinder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-fill.imageset/database-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/database.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-fill.imageset/database-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/database.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-fill.imageset/desk-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/desk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-fill.imageset/desk-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/desk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-fill.imageset/desktop-tower-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/desktop-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-fill.imageset/desktop-tower-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/desktop-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-fill.imageset/desktop-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/desktop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-fill.imageset/desktop-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/desktop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-fill.imageset/detective-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/detective.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-fill.imageset/detective-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/detective.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-fill.imageset/dev-to-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dev-to-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-fill.imageset/dev-to-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dev-to-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-fill.imageset/device-mobile-camera-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-mobile-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-fill.imageset/device-mobile-camera-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-mobile-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-fill.imageset/device-mobile-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-mobile-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-fill.imageset/device-mobile-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-mobile-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-fill.imageset/device-mobile-speaker-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-mobile-speaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-fill.imageset/device-mobile-speaker-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-mobile-speaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-fill.imageset/device-mobile-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-mobile.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-fill.imageset/device-mobile-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-mobile.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-fill.imageset/device-rotate-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-rotate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-fill.imageset/device-rotate-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-rotate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-fill.imageset/device-tablet-camera-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-tablet-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-fill.imageset/device-tablet-camera-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-tablet-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-fill.imageset/device-tablet-speaker-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-tablet-speaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-fill.imageset/device-tablet-speaker-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-tablet-speaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-fill.imageset/device-tablet-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-tablet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-fill.imageset/device-tablet-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/device-tablet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-fill.imageset/devices-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/devices.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-fill.imageset/devices-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/devices.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-fill.imageset/diamond-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/diamond.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-fill.imageset/diamond-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/diamond.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-fill.imageset/diamonds-four-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/diamonds-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-fill.imageset/diamonds-four-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/diamonds-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-fill.imageset/dice-five-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dice-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-fill.imageset/dice-five-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dice-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-fill.imageset/dice-four-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dice-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-fill.imageset/dice-four-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dice-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-fill.imageset/dice-one-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dice-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-fill.imageset/dice-one-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dice-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-fill.imageset/dice-six-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dice-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-fill.imageset/dice-six-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dice-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-fill.imageset/dice-three-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dice-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-fill.imageset/dice-three-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dice-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-fill.imageset/dice-two-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dice-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-fill.imageset/dice-two-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dice-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-fill.imageset/disc-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/disc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-fill.imageset/disc-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/disc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-fill.imageset/disco-ball-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/disco-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-fill.imageset/disco-ball-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/disco-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-fill.imageset/discord-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/discord-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-fill.imageset/discord-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/discord-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-fill.imageset/divide-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/divide.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-fill.imageset/divide-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/divide.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-fill.imageset/dna-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dna.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-fill.imageset/dna-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dna.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-fill.imageset/dog-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dog.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-fill.imageset/dog-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dog.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-fill.imageset/door-open-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/door-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-fill.imageset/door-open-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/door-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-fill.imageset/door-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/door.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-fill.imageset/door-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/door.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-fill.imageset/dot-outline-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dot-outline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-fill.imageset/dot-outline-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dot-outline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-fill.imageset/dot-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-fill.imageset/dot-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-fill.imageset/dots-nine-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-fill.imageset/dots-nine-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-fill.imageset/dots-six-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-six-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-fill.imageset/dots-six-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-six-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-fill.imageset/dots-six-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-fill.imageset/dots-six-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-fill.imageset/dots-three-circle-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-three-circle-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-fill.imageset/dots-three-circle-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-three-circle-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-fill.imageset/dots-three-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-three-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-fill.imageset/dots-three-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-three-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-fill.imageset/dots-three-outline-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-three-outline-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-fill.imageset/dots-three-outline-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-three-outline-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-fill.imageset/dots-three-outline-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-three-outline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-fill.imageset/dots-three-outline-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-three-outline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-fill.imageset/dots-three-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-three-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-fill.imageset/dots-three-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-three-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-fill.imageset/dots-three-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-fill.imageset/dots-three-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dots-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-fill.imageset/download-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/download-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-fill.imageset/download-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/download-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-fill.imageset/download-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/download.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-fill.imageset/download-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/download.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-fill.imageset/dress-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dress.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-fill.imageset/dress-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dress.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-fill.imageset/dresser-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dresser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-fill.imageset/dresser-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dresser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-fill.imageset/dribbble-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dribbble-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-fill.imageset/dribbble-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dribbble-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-fill.imageset/drone-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/drone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-fill.imageset/drone-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/drone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-fill.imageset/drop-half-bottom-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/drop-half-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-fill.imageset/drop-half-bottom-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/drop-half-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-fill.imageset/drop-half-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/drop-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-fill.imageset/drop-half-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/drop-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-fill.imageset/drop-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/drop-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-fill.imageset/drop-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/drop-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-fill.imageset/drop-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/drop-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-fill.imageset/drop-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/drop-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-fill.imageset/drop-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/drop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-fill.imageset/drop-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/drop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-fill.imageset/dropbox-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/dropbox-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-fill.imageset/dropbox-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/dropbox-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-fill.imageset/ear-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/ear-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-fill.imageset/ear-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/ear-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-fill.imageset/ear-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/ear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-fill.imageset/ear-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/ear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-fill.imageset/egg-crack-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/egg-crack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-fill.imageset/egg-crack-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/egg-crack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-fill.imageset/egg-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/egg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-fill.imageset/egg-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/egg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-fill.imageset/eject-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/eject-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-fill.imageset/eject-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/eject-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-fill.imageset/eject-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/eject.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-fill.imageset/eject-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/eject.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-fill.imageset/elevator-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/elevator.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-fill.imageset/elevator-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/elevator.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-fill.imageset/empty-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-fill.imageset/empty-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-fill.imageset/engine-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/engine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-fill.imageset/engine-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/engine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-fill.imageset/envelope-open-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/envelope-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-fill.imageset/envelope-open-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/envelope-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-fill.imageset/envelope-simple-open-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/envelope-simple-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-fill.imageset/envelope-simple-open-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/envelope-simple-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-fill.imageset/envelope-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/envelope-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-fill.imageset/envelope-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/envelope-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-fill.imageset/envelope-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/envelope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-fill.imageset/envelope-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/envelope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-fill.imageset/equalizer-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/equalizer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-fill.imageset/equalizer-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/equalizer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-fill.imageset/equals-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-fill.imageset/equals-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-fill.imageset/eraser-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/eraser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-fill.imageset/eraser-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/eraser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-fill.imageset/escalator-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/escalator-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-fill.imageset/escalator-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/escalator-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-fill.imageset/escalator-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/escalator-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-fill.imageset/escalator-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/escalator-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-fill.imageset/exam-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/exam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-fill.imageset/exam-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/exam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-fill.imageset/exclamation-mark-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/exclamation-mark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-fill.imageset/exclamation-mark-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/exclamation-mark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-fill.imageset/exclude-square-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/exclude-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-fill.imageset/exclude-square-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/exclude-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-fill.imageset/exclude-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/exclude.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-fill.imageset/exclude-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/exclude.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-fill.imageset/export-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/export.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-fill.imageset/export-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/export.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-fill.imageset/eye-closed-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/eye-closed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-fill.imageset/eye-closed-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/eye-closed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-fill.imageset/eye-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/eye-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-fill.imageset/eye-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/eye-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-fill.imageset/eye-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/eye.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-fill.imageset/eye-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/eye.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-fill.imageset/eyedropper-sample-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/eyedropper-sample.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-fill.imageset/eyedropper-sample-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/eyedropper-sample.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-fill.imageset/eyedropper-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/eyedropper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-fill.imageset/eyedropper-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/eyedropper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-fill.imageset/eyeglasses-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/eyeglasses.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-fill.imageset/eyeglasses-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/eyeglasses.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-fill.imageset/eyes-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/eyes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-fill.imageset/eyes-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/eyes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-fill.imageset/face-mask-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/face-mask.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-fill.imageset/face-mask-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/face-mask.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-fill.imageset/facebook-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/facebook-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-fill.imageset/facebook-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/facebook-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-fill.imageset/factory-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/factory.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-fill.imageset/factory-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/factory.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-fill.imageset/faders-horizontal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/faders-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-fill.imageset/faders-horizontal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/faders-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-fill.imageset/faders-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/faders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-fill.imageset/faders-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/faders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-fill.imageset/fallout-shelter-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/fallout-shelter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-fill.imageset/fallout-shelter-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/fallout-shelter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-fill.imageset/fan-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/fan.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-fill.imageset/fan-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/fan.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-fill.imageset/farm-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/farm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-fill.imageset/farm-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/farm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-fill.imageset/fast-forward-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/fast-forward-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-fill.imageset/fast-forward-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/fast-forward-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-fill.imageset/fast-forward-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/fast-forward.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-fill.imageset/fast-forward-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/fast-forward.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-fill.imageset/feather-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/feather.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-fill.imageset/feather-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/feather.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-fill.imageset/fediverse-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/fediverse-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-fill.imageset/fediverse-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/fediverse-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-fill.imageset/figma-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/figma-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-fill.imageset/figma-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/figma-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-fill.imageset/file-archive-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-archive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-fill.imageset/file-archive-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-archive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-fill.imageset/file-arrow-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-fill.imageset/file-arrow-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-fill.imageset/file-arrow-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-fill.imageset/file-arrow-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-fill.imageset/file-audio-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-audio.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-fill.imageset/file-audio-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-audio.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-fill.imageset/file-c-sharp-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-c-sharp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-fill.imageset/file-c-sharp-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-c-sharp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-fill.imageset/file-c-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-c.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-fill.imageset/file-c-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-c.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-fill.imageset/file-cloud-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-fill.imageset/file-cloud-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-fill.imageset/file-code-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-fill.imageset/file-code-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-fill.imageset/file-cpp-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-cpp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-fill.imageset/file-cpp-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-cpp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-fill.imageset/file-css-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-css.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-fill.imageset/file-css-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-css.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-fill.imageset/file-csv-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-csv.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-fill.imageset/file-csv-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-csv.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-fill.imageset/file-dashed-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-fill.imageset/file-dashed-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-fill.imageset/file-doc-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-doc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-fill.imageset/file-doc-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-doc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-fill.imageset/file-html-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-html.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-fill.imageset/file-html-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-html.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-fill.imageset/file-image-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-image.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-fill.imageset/file-image-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-image.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-fill.imageset/file-ini-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-ini.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-fill.imageset/file-ini-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-ini.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-fill.imageset/file-jpg-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-jpg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-fill.imageset/file-jpg-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-jpg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-fill.imageset/file-js-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-js.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-fill.imageset/file-js-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-js.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-fill.imageset/file-jsx-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-jsx.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-fill.imageset/file-jsx-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-jsx.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-fill.imageset/file-lock-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-fill.imageset/file-lock-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-fill.imageset/file-magnifying-glass-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-fill.imageset/file-magnifying-glass-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-fill.imageset/file-md-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-md.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-fill.imageset/file-md-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-md.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-fill.imageset/file-minus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-fill.imageset/file-minus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-fill.imageset/file-pdf-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-pdf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-fill.imageset/file-pdf-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-pdf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-fill.imageset/file-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-fill.imageset/file-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-fill.imageset/file-png-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-png.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-fill.imageset/file-png-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-png.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-fill.imageset/file-ppt-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-ppt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-fill.imageset/file-ppt-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-ppt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-fill.imageset/file-py-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-py.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-fill.imageset/file-py-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-py.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-fill.imageset/file-rs-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-rs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-fill.imageset/file-rs-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-rs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-fill.imageset/file-sql-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-sql.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-fill.imageset/file-sql-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-sql.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-fill.imageset/file-svg-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-svg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-fill.imageset/file-svg-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-svg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-fill.imageset/file-text-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-fill.imageset/file-text-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-fill.imageset/file-ts-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-ts.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-fill.imageset/file-ts-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-ts.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-fill.imageset/file-tsx-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-tsx.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-fill.imageset/file-tsx-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-tsx.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-fill.imageset/file-txt-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-txt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-fill.imageset/file-txt-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-txt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-fill.imageset/file-video-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-video.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-fill.imageset/file-video-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-video.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-fill.imageset/file-vue-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-vue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-fill.imageset/file-vue-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-vue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-fill.imageset/file-x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-fill.imageset/file-x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-fill.imageset/file-xls-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-xls.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-fill.imageset/file-xls-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-xls.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-fill.imageset/file-zip-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-zip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-fill.imageset/file-zip-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file-zip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-fill.imageset/file-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/file.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-fill.imageset/file-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/file.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-fill.imageset/files-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/files.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-fill.imageset/files-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/files.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-fill.imageset/film-reel-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/film-reel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-fill.imageset/film-reel-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/film-reel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-fill.imageset/film-script-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/film-script.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-fill.imageset/film-script-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/film-script.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-fill.imageset/film-slate-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/film-slate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-fill.imageset/film-slate-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/film-slate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-fill.imageset/film-strip-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/film-strip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-fill.imageset/film-strip-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/film-strip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-fill.imageset/fingerprint-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/fingerprint-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-fill.imageset/fingerprint-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/fingerprint-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-fill.imageset/fingerprint-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/fingerprint.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-fill.imageset/fingerprint-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/fingerprint.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-fill.imageset/finn-the-human-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/finn-the-human.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-fill.imageset/finn-the-human-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/finn-the-human.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-fill.imageset/fire-extinguisher-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/fire-extinguisher.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-fill.imageset/fire-extinguisher-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/fire-extinguisher.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-fill.imageset/fire-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/fire-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-fill.imageset/fire-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/fire-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-fill.imageset/fire-truck-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/fire-truck.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-fill.imageset/fire-truck-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/fire-truck.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-fill.imageset/fire-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/fire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-fill.imageset/fire-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/fire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-fill.imageset/first-aid-kit-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/first-aid-kit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-fill.imageset/first-aid-kit-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/first-aid-kit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-fill.imageset/first-aid-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/first-aid.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-fill.imageset/first-aid-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/first-aid.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-fill.imageset/fish-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/fish-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-fill.imageset/fish-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/fish-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-fill.imageset/fish-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/fish.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-fill.imageset/fish-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/fish.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-fill.imageset/flag-banner-fold-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/flag-banner-fold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-fill.imageset/flag-banner-fold-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/flag-banner-fold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fill.imageset/flag-banner-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/flag-banner.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fill.imageset/flag-banner-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/flag-banner.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-fill.imageset/flag-checkered-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/flag-checkered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-fill.imageset/flag-checkered-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/flag-checkered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-fill.imageset/flag-pennant-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/flag-pennant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-fill.imageset/flag-pennant-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/flag-pennant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-fill.imageset/flag-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/flag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-fill.imageset/flag-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/flag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-fill.imageset/flame-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/flame.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-fill.imageset/flame-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/flame.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-fill.imageset/flashlight-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/flashlight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-fill.imageset/flashlight-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/flashlight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-fill.imageset/flask-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/flask.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-fill.imageset/flask-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/flask.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-fill.imageset/flip-horizontal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/flip-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-fill.imageset/flip-horizontal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/flip-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-fill.imageset/flip-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/flip-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-fill.imageset/flip-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/flip-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-fill.imageset/floppy-disk-back-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/floppy-disk-back.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-fill.imageset/floppy-disk-back-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/floppy-disk-back.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-fill.imageset/floppy-disk-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/floppy-disk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-fill.imageset/floppy-disk-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/floppy-disk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-fill.imageset/flow-arrow-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/flow-arrow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-fill.imageset/flow-arrow-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/flow-arrow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-fill.imageset/flower-lotus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/flower-lotus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-fill.imageset/flower-lotus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/flower-lotus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-fill.imageset/flower-tulip-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/flower-tulip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-fill.imageset/flower-tulip-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/flower-tulip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-fill.imageset/flower-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/flower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-fill.imageset/flower-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/flower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-fill.imageset/flying-saucer-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/flying-saucer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-fill.imageset/flying-saucer-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/flying-saucer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-fill.imageset/folder-dashed-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-fill.imageset/folder-dashed-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-fill.imageset/folder-lock-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-fill.imageset/folder-lock-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-fill.imageset/folder-minus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-fill.imageset/folder-minus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-fill.imageset/folder-open-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-fill.imageset/folder-open-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-fill.imageset/folder-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-fill.imageset/folder-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-fill.imageset/folder-simple-dashed-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-simple-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-fill.imageset/folder-simple-dashed-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-simple-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-fill.imageset/folder-simple-lock-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-simple-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-fill.imageset/folder-simple-lock-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-simple-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-fill.imageset/folder-simple-minus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-simple-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-fill.imageset/folder-simple-minus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-simple-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-fill.imageset/folder-simple-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-simple-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-fill.imageset/folder-simple-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-simple-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-fill.imageset/folder-simple-star-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-simple-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-fill.imageset/folder-simple-star-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-simple-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-fill.imageset/folder-simple-user-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-simple-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-fill.imageset/folder-simple-user-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-simple-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-fill.imageset/folder-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-fill.imageset/folder-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-fill.imageset/folder-star-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-fill.imageset/folder-star-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-fill.imageset/folder-user-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-fill.imageset/folder-user-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-fill.imageset/folder-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-fill.imageset/folder-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-fill.imageset/folders-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/folders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-fill.imageset/folders-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/folders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-fill.imageset/football-helmet-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/football-helmet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-fill.imageset/football-helmet-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/football-helmet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-fill.imageset/football-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/football.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-fill.imageset/football-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/football.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-fill.imageset/footprints-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/footprints.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-fill.imageset/footprints-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/footprints.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-fill.imageset/fork-knife-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/fork-knife.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-fill.imageset/fork-knife-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/fork-knife.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-fill.imageset/four-k-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/four-k.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-fill.imageset/four-k-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/four-k.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-fill.imageset/frame-corners-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/frame-corners.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-fill.imageset/frame-corners-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/frame-corners.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-fill.imageset/framer-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/framer-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-fill.imageset/framer-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/framer-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-fill.imageset/function-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/function.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-fill.imageset/function-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/function.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-fill.imageset/funnel-simple-x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/funnel-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-fill.imageset/funnel-simple-x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/funnel-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-fill.imageset/funnel-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/funnel-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-fill.imageset/funnel-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/funnel-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-fill.imageset/funnel-x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/funnel-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-fill.imageset/funnel-x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/funnel-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-fill.imageset/funnel-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/funnel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-fill.imageset/funnel-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/funnel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-fill.imageset/game-controller-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/game-controller.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-fill.imageset/game-controller-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/game-controller.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-fill.imageset/garage-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/garage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-fill.imageset/garage-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/garage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-fill.imageset/gas-can-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gas-can.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-fill.imageset/gas-can-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gas-can.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-fill.imageset/gas-pump-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gas-pump.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-fill.imageset/gas-pump-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gas-pump.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-fill.imageset/gauge-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gauge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-fill.imageset/gauge-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gauge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-fill.imageset/gavel-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gavel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-fill.imageset/gavel-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gavel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-fill.imageset/gear-fine-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gear-fine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-fill.imageset/gear-fine-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gear-fine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-fill.imageset/gear-six-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gear-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-fill.imageset/gear-six-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gear-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fill.imageset/gear-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fill.imageset/gear-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-fill.imageset/gender-female-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gender-female.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-fill.imageset/gender-female-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gender-female.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-fill.imageset/gender-intersex-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gender-intersex.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-fill.imageset/gender-intersex-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gender-intersex.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-fill.imageset/gender-male-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gender-male.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-fill.imageset/gender-male-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gender-male.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-fill.imageset/gender-neuter-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gender-neuter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-fill.imageset/gender-neuter-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gender-neuter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-fill.imageset/gender-nonbinary-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gender-nonbinary.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-fill.imageset/gender-nonbinary-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gender-nonbinary.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-fill.imageset/gender-transgender-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gender-transgender.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-fill.imageset/gender-transgender-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gender-transgender.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-fill.imageset/ghost-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/ghost.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-fill.imageset/ghost-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/ghost.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-fill.imageset/gif-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gif.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-fill.imageset/gif-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gif.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-fill.imageset/gift-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gift.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-fill.imageset/gift-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gift.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-fill.imageset/git-branch-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/git-branch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-fill.imageset/git-branch-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/git-branch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-fill.imageset/git-commit-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/git-commit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-fill.imageset/git-commit-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/git-commit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-fill.imageset/git-diff-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/git-diff.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-fill.imageset/git-diff-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/git-diff.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-fill.imageset/git-fork-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/git-fork.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-fill.imageset/git-fork-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/git-fork.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-fill.imageset/git-merge-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/git-merge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-fill.imageset/git-merge-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/git-merge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-fill.imageset/git-pull-request-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/git-pull-request.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-fill.imageset/git-pull-request-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/git-pull-request.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-fill.imageset/github-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/github-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-fill.imageset/github-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/github-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-fill.imageset/gitlab-logo-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gitlab-logo-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-fill.imageset/gitlab-logo-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gitlab-logo-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-fill.imageset/gitlab-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gitlab-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-fill.imageset/gitlab-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gitlab-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-fill.imageset/globe-hemisphere-east-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/globe-hemisphere-east.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-fill.imageset/globe-hemisphere-east-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/globe-hemisphere-east.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-fill.imageset/globe-hemisphere-west-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/globe-hemisphere-west.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-fill.imageset/globe-hemisphere-west-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/globe-hemisphere-west.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-fill.imageset/globe-simple-x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/globe-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-fill.imageset/globe-simple-x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/globe-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-fill.imageset/globe-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/globe-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-fill.imageset/globe-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/globe-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-fill.imageset/globe-stand-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/globe-stand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-fill.imageset/globe-stand-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/globe-stand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-fill.imageset/globe-x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/globe-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-fill.imageset/globe-x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/globe-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-fill.imageset/globe-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/globe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-fill.imageset/globe-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/globe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-fill.imageset/goggles-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/goggles.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-fill.imageset/goggles-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/goggles.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-fill.imageset/golf-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/golf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-fill.imageset/golf-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/golf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-fill.imageset/goodreads-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/goodreads-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-fill.imageset/goodreads-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/goodreads-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-fill.imageset/google-cardboard-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/google-cardboard-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-fill.imageset/google-cardboard-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/google-cardboard-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-fill.imageset/google-chrome-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/google-chrome-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-fill.imageset/google-chrome-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/google-chrome-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-fill.imageset/google-drive-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/google-drive-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-fill.imageset/google-drive-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/google-drive-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-fill.imageset/google-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/google-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-fill.imageset/google-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/google-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-fill.imageset/google-photos-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/google-photos-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-fill.imageset/google-photos-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/google-photos-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-fill.imageset/google-play-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/google-play-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-fill.imageset/google-play-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/google-play-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-fill.imageset/google-podcasts-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/google-podcasts-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-fill.imageset/google-podcasts-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/google-podcasts-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-fill.imageset/gps-fix-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gps-fix.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-fill.imageset/gps-fix-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gps-fix.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-fill.imageset/gps-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gps-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-fill.imageset/gps-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gps-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fill.imageset/gps-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gps.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fill.imageset/gps-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gps.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-fill.imageset/gradient-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/gradient.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-fill.imageset/gradient-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/gradient.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-fill.imageset/graduation-cap-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/graduation-cap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-fill.imageset/graduation-cap-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/graduation-cap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-fill.imageset/grains-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/grains-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-fill.imageset/grains-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/grains-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-fill.imageset/grains-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/grains.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-fill.imageset/grains-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/grains.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-fill.imageset/graph-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/graph.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-fill.imageset/graph-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/graph.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-fill.imageset/graphics-card-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/graphics-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-fill.imageset/graphics-card-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/graphics-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-fill.imageset/greater-than-or-equal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/greater-than-or-equal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-fill.imageset/greater-than-or-equal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/greater-than-or-equal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-fill.imageset/greater-than-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/greater-than.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-fill.imageset/greater-than-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/greater-than.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-fill.imageset/grid-four-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/grid-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-fill.imageset/grid-four-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/grid-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-fill.imageset/grid-nine-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/grid-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-fill.imageset/grid-nine-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/grid-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-fill.imageset/guitar-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/guitar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-fill.imageset/guitar-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/guitar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-fill.imageset/hair-dryer-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hair-dryer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-fill.imageset/hair-dryer-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hair-dryer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-fill.imageset/hamburger-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hamburger.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-fill.imageset/hamburger-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hamburger.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-fill.imageset/hammer-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hammer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-fill.imageset/hammer-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hammer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-fill.imageset/hand-arrow-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-fill.imageset/hand-arrow-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-fill.imageset/hand-arrow-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-fill.imageset/hand-arrow-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-fill.imageset/hand-coins-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-coins.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-fill.imageset/hand-coins-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-coins.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-fill.imageset/hand-deposit-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-deposit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-fill.imageset/hand-deposit-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-deposit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-fill.imageset/hand-eye-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-eye.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-fill.imageset/hand-eye-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-eye.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-fill.imageset/hand-fist-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-fist.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-fill.imageset/hand-fist-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-fist.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-fill.imageset/hand-grabbing-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-grabbing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-fill.imageset/hand-grabbing-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-grabbing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-fill.imageset/hand-heart-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-fill.imageset/hand-heart-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-fill.imageset/hand-palm-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-palm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-fill.imageset/hand-palm-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-palm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-fill.imageset/hand-peace-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-peace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-fill.imageset/hand-peace-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-peace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-fill.imageset/hand-pointing-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-pointing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-fill.imageset/hand-pointing-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-pointing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-fill.imageset/hand-soap-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-soap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-fill.imageset/hand-soap-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-soap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-fill.imageset/hand-swipe-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-swipe-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-fill.imageset/hand-swipe-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-swipe-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-fill.imageset/hand-swipe-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-swipe-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-fill.imageset/hand-swipe-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-swipe-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-fill.imageset/hand-tap-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-tap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-fill.imageset/hand-tap-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-tap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-fill.imageset/hand-waving-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-waving.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-fill.imageset/hand-waving-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-waving.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-fill.imageset/hand-withdraw-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-withdraw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-fill.imageset/hand-withdraw-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand-withdraw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fill.imageset/hand-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fill.imageset/hand-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-fill.imageset/handbag-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/handbag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-fill.imageset/handbag-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/handbag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-fill.imageset/handbag-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/handbag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-fill.imageset/handbag-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/handbag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-fill.imageset/hands-clapping-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hands-clapping.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-fill.imageset/hands-clapping-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hands-clapping.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-fill.imageset/hands-praying-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hands-praying.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-fill.imageset/hands-praying-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hands-praying.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-fill.imageset/handshake-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/handshake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-fill.imageset/handshake-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/handshake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-fill.imageset/hard-drive-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hard-drive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-fill.imageset/hard-drive-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hard-drive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-fill.imageset/hard-drives-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hard-drives.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-fill.imageset/hard-drives-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hard-drives.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-fill.imageset/hard-hat-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hard-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-fill.imageset/hard-hat-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hard-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-fill.imageset/hash-straight-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hash-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-fill.imageset/hash-straight-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hash-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-fill.imageset/hash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-fill.imageset/hash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-fill.imageset/head-circuit-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/head-circuit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-fill.imageset/head-circuit-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/head-circuit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-fill.imageset/headlights-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/headlights.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-fill.imageset/headlights-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/headlights.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-fill.imageset/headphones-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/headphones.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-fill.imageset/headphones-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/headphones.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-fill.imageset/headset-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/headset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-fill.imageset/headset-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/headset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-fill.imageset/heart-break-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/heart-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-fill.imageset/heart-break-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/heart-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-fill.imageset/heart-half-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/heart-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-fill.imageset/heart-half-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/heart-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-fill.imageset/heart-straight-break-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/heart-straight-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-fill.imageset/heart-straight-break-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/heart-straight-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-fill.imageset/heart-straight-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/heart-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-fill.imageset/heart-straight-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/heart-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-fill.imageset/heart-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-fill.imageset/heart-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-fill.imageset/heartbeat-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/heartbeat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-fill.imageset/heartbeat-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/heartbeat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-fill.imageset/hexagon-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hexagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-fill.imageset/hexagon-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hexagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-fill.imageset/high-definition-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/high-definition.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-fill.imageset/high-definition-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/high-definition.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-fill.imageset/high-heel-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/high-heel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-fill.imageset/high-heel-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/high-heel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-fill.imageset/highlighter-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/highlighter-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-fill.imageset/highlighter-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/highlighter-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-fill.imageset/highlighter-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/highlighter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-fill.imageset/highlighter-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/highlighter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-fill.imageset/hockey-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hockey.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-fill.imageset/hockey-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hockey.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-fill.imageset/hoodie-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hoodie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-fill.imageset/hoodie-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hoodie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-fill.imageset/horse-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/horse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-fill.imageset/horse-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/horse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-fill.imageset/hospital-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hospital.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-fill.imageset/hospital-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hospital.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-fill.imageset/hourglass-high-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-fill.imageset/hourglass-high-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-fill.imageset/hourglass-low-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-fill.imageset/hourglass-low-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-fill.imageset/hourglass-medium-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-fill.imageset/hourglass-medium-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-fill.imageset/hourglass-simple-high-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass-simple-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-fill.imageset/hourglass-simple-high-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass-simple-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-fill.imageset/hourglass-simple-low-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass-simple-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-fill.imageset/hourglass-simple-low-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass-simple-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-fill.imageset/hourglass-simple-medium-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass-simple-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-fill.imageset/hourglass-simple-medium-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass-simple-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-fill.imageset/hourglass-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-fill.imageset/hourglass-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-fill.imageset/hourglass-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-fill.imageset/hourglass-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hourglass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-fill.imageset/house-line-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/house-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-fill.imageset/house-line-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/house-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-fill.imageset/house-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/house-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-fill.imageset/house-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/house-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-fill.imageset/house-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/house.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-fill.imageset/house-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/house.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-fill.imageset/hurricane-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/hurricane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-fill.imageset/hurricane-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/hurricane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-fill.imageset/ice-cream-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/ice-cream.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-fill.imageset/ice-cream-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/ice-cream.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-fill.imageset/identification-badge-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/identification-badge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-fill.imageset/identification-badge-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/identification-badge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-fill.imageset/identification-card-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/identification-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-fill.imageset/identification-card-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/identification-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-fill.imageset/image-broken-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/image-broken.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-fill.imageset/image-broken-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/image-broken.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-fill.imageset/image-square-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/image-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-fill.imageset/image-square-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/image-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-fill.imageset/image-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/image.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-fill.imageset/image-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/image.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-fill.imageset/images-square-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/images-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-fill.imageset/images-square-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/images-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-fill.imageset/images-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/images.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-fill.imageset/images-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/images.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-fill.imageset/infinity-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/infinity.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-fill.imageset/infinity-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/infinity.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-fill.imageset/info-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/info.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-fill.imageset/info-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/info.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-fill.imageset/instagram-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/instagram-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-fill.imageset/instagram-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/instagram-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-fill.imageset/intersect-square-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/intersect-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-fill.imageset/intersect-square-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/intersect-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-fill.imageset/intersect-three-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/intersect-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-fill.imageset/intersect-three-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/intersect-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-fill.imageset/intersect-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/intersect.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-fill.imageset/intersect-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/intersect.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-fill.imageset/intersection-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/intersection.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-fill.imageset/intersection-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/intersection.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-fill.imageset/invoice-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/invoice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-fill.imageset/invoice-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/invoice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-fill.imageset/island-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/island.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-fill.imageset/island-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/island.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-fill.imageset/jar-label-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/jar-label.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-fill.imageset/jar-label-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/jar-label.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-fill.imageset/jar-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/jar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-fill.imageset/jar-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/jar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-fill.imageset/jeep-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/jeep.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-fill.imageset/jeep-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/jeep.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-fill.imageset/joystick-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/joystick.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-fill.imageset/joystick-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/joystick.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-fill.imageset/kanban-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/kanban.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-fill.imageset/kanban-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/kanban.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-fill.imageset/key-return-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/key-return.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-fill.imageset/key-return-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/key-return.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-fill.imageset/key-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/key.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-fill.imageset/key-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/key.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-fill.imageset/keyboard-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/keyboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-fill.imageset/keyboard-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/keyboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-fill.imageset/keyhole-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/keyhole.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-fill.imageset/keyhole-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/keyhole.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-fill.imageset/knife-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/knife.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-fill.imageset/knife-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/knife.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-fill.imageset/ladder-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/ladder-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-fill.imageset/ladder-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/ladder-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-fill.imageset/ladder-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/ladder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-fill.imageset/ladder-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/ladder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-fill.imageset/lamp-pendant-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lamp-pendant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-fill.imageset/lamp-pendant-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lamp-pendant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-fill.imageset/lamp-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lamp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-fill.imageset/lamp-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lamp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-fill.imageset/laptop-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/laptop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-fill.imageset/laptop-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/laptop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-fill.imageset/lasso-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lasso.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-fill.imageset/lasso-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lasso.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-fill.imageset/lastfm-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lastfm-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-fill.imageset/lastfm-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lastfm-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-fill.imageset/layout-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/layout.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-fill.imageset/layout-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/layout.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-fill.imageset/leaf-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/leaf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-fill.imageset/leaf-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/leaf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-fill.imageset/lectern-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lectern.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-fill.imageset/lectern-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lectern.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-fill.imageset/lego-smiley-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lego-smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-fill.imageset/lego-smiley-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lego-smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-fill.imageset/lego-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lego.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-fill.imageset/lego-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lego.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-fill.imageset/less-than-or-equal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/less-than-or-equal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-fill.imageset/less-than-or-equal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/less-than-or-equal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-fill.imageset/less-than-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/less-than.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-fill.imageset/less-than-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/less-than.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-fill.imageset/letter-circle-h-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/letter-circle-h.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-fill.imageset/letter-circle-h-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/letter-circle-h.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-fill.imageset/letter-circle-p-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/letter-circle-p.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-fill.imageset/letter-circle-p-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/letter-circle-p.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-fill.imageset/letter-circle-v-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/letter-circle-v.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-fill.imageset/letter-circle-v-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/letter-circle-v.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-fill.imageset/lifebuoy-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lifebuoy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-fill.imageset/lifebuoy-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lifebuoy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-fill.imageset/lightbulb-filament-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lightbulb-filament.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-fill.imageset/lightbulb-filament-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lightbulb-filament.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-fill.imageset/lightbulb-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lightbulb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-fill.imageset/lightbulb-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lightbulb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-fill.imageset/lighthouse-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lighthouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-fill.imageset/lighthouse-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lighthouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-fill.imageset/lightning-a-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lightning-a.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-fill.imageset/lightning-a-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lightning-a.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-fill.imageset/lightning-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lightning-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-fill.imageset/lightning-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lightning-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-fill.imageset/lightning-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lightning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-fill.imageset/lightning-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lightning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-fill.imageset/line-segment-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/line-segment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-fill.imageset/line-segment-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/line-segment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-fill.imageset/line-segments-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/line-segments.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-fill.imageset/line-segments-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/line-segments.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-fill.imageset/line-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-fill.imageset/line-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-fill.imageset/link-break-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/link-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-fill.imageset/link-break-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/link-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-fill.imageset/link-simple-break-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/link-simple-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-fill.imageset/link-simple-break-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/link-simple-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-fill.imageset/link-simple-horizontal-break-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/link-simple-horizontal-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-fill.imageset/link-simple-horizontal-break-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/link-simple-horizontal-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-fill.imageset/link-simple-horizontal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/link-simple-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-fill.imageset/link-simple-horizontal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/link-simple-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-fill.imageset/link-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/link-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-fill.imageset/link-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/link-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-fill.imageset/link-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/link.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-fill.imageset/link-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/link.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-fill.imageset/linkedin-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/linkedin-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-fill.imageset/linkedin-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/linkedin-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-fill.imageset/linktree-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/linktree-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-fill.imageset/linktree-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/linktree-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-fill.imageset/linux-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/linux-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-fill.imageset/linux-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/linux-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-fill.imageset/list-bullets-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-bullets.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-fill.imageset/list-bullets-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-bullets.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-fill.imageset/list-checks-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-checks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-fill.imageset/list-checks-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-checks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-fill.imageset/list-dashes-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-dashes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-fill.imageset/list-dashes-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-dashes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-fill.imageset/list-heart-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-fill.imageset/list-heart-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-fill.imageset/list-magnifying-glass-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-fill.imageset/list-magnifying-glass-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-fill.imageset/list-numbers-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-numbers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-fill.imageset/list-numbers-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-numbers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-fill.imageset/list-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-fill.imageset/list-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-fill.imageset/list-star-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-fill.imageset/list-star-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/list-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-fill.imageset/list-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-fill.imageset/list-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-fill.imageset/lock-key-open-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock-key-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-fill.imageset/lock-key-open-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock-key-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-fill.imageset/lock-key-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock-key.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-fill.imageset/lock-key-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock-key.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-fill.imageset/lock-laminated-open-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock-laminated-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-fill.imageset/lock-laminated-open-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock-laminated-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-fill.imageset/lock-laminated-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock-laminated.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-fill.imageset/lock-laminated-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock-laminated.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-fill.imageset/lock-open-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-fill.imageset/lock-open-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-fill.imageset/lock-simple-open-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock-simple-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-fill.imageset/lock-simple-open-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock-simple-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-fill.imageset/lock-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-fill.imageset/lock-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-fill.imageset/lock-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-fill.imageset/lock-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-fill.imageset/lockers-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/lockers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-fill.imageset/lockers-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/lockers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-fill.imageset/log-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/log.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-fill.imageset/log-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/log.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-fill.imageset/magic-wand-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/magic-wand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-fill.imageset/magic-wand-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/magic-wand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-fill.imageset/magnet-straight-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/magnet-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-fill.imageset/magnet-straight-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/magnet-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-fill.imageset/magnet-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/magnet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-fill.imageset/magnet-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/magnet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-fill.imageset/magnifying-glass-minus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/magnifying-glass-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-fill.imageset/magnifying-glass-minus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/magnifying-glass-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-fill.imageset/magnifying-glass-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/magnifying-glass-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-fill.imageset/magnifying-glass-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/magnifying-glass-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-fill.imageset/magnifying-glass-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-fill.imageset/magnifying-glass-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-fill.imageset/mailbox-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/mailbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-fill.imageset/mailbox-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/mailbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-fill.imageset/map-pin-area-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-pin-area.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-fill.imageset/map-pin-area-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-pin-area.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-fill.imageset/map-pin-line-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-pin-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-fill.imageset/map-pin-line-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-pin-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-fill.imageset/map-pin-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-pin-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-fill.imageset/map-pin-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-pin-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-fill.imageset/map-pin-simple-area-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-pin-simple-area.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-fill.imageset/map-pin-simple-area-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-pin-simple-area.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-fill.imageset/map-pin-simple-line-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-pin-simple-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-fill.imageset/map-pin-simple-line-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-pin-simple-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-fill.imageset/map-pin-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-pin-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-fill.imageset/map-pin-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-pin-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-fill.imageset/map-pin-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-pin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-fill.imageset/map-pin-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-pin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-fill.imageset/map-trifold-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-trifold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-fill.imageset/map-trifold-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/map-trifold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-fill.imageset/markdown-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/markdown-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-fill.imageset/markdown-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/markdown-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-fill.imageset/marker-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/marker-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-fill.imageset/marker-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/marker-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-fill.imageset/martini-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/martini.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-fill.imageset/martini-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/martini.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-fill.imageset/mask-happy-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/mask-happy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-fill.imageset/mask-happy-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/mask-happy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-fill.imageset/mask-sad-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/mask-sad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-fill.imageset/mask-sad-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/mask-sad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-fill.imageset/mastodon-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/mastodon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-fill.imageset/mastodon-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/mastodon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-fill.imageset/math-operations-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/math-operations.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-fill.imageset/math-operations-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/math-operations.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-fill.imageset/matrix-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/matrix-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-fill.imageset/matrix-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/matrix-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-fill.imageset/medal-military-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/medal-military.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-fill.imageset/medal-military-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/medal-military.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-fill.imageset/medal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/medal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-fill.imageset/medal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/medal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-fill.imageset/medium-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/medium-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-fill.imageset/medium-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/medium-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-fill.imageset/megaphone-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/megaphone-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-fill.imageset/megaphone-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/megaphone-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-fill.imageset/megaphone-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/megaphone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-fill.imageset/megaphone-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/megaphone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-fill.imageset/member-of-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/member-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-fill.imageset/member-of-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/member-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-fill.imageset/memory-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/memory.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-fill.imageset/memory-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/memory.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-fill.imageset/messenger-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/messenger-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-fill.imageset/messenger-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/messenger-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-fill.imageset/meta-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/meta-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-fill.imageset/meta-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/meta-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-fill.imageset/meteor-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/meteor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-fill.imageset/meteor-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/meteor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-fill.imageset/metronome-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/metronome.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-fill.imageset/metronome-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/metronome.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-fill.imageset/microphone-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/microphone-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-fill.imageset/microphone-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/microphone-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-fill.imageset/microphone-stage-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/microphone-stage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-fill.imageset/microphone-stage-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/microphone-stage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-fill.imageset/microphone-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/microphone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-fill.imageset/microphone-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/microphone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-fill.imageset/microscope-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/microscope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-fill.imageset/microscope-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/microscope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-fill.imageset/microsoft-excel-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/microsoft-excel-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-fill.imageset/microsoft-excel-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/microsoft-excel-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-fill.imageset/microsoft-outlook-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/microsoft-outlook-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-fill.imageset/microsoft-outlook-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/microsoft-outlook-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-fill.imageset/microsoft-powerpoint-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/microsoft-powerpoint-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-fill.imageset/microsoft-powerpoint-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/microsoft-powerpoint-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-fill.imageset/microsoft-teams-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/microsoft-teams-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-fill.imageset/microsoft-teams-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/microsoft-teams-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-fill.imageset/microsoft-word-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/microsoft-word-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-fill.imageset/microsoft-word-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/microsoft-word-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-fill.imageset/minus-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/minus-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-fill.imageset/minus-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/minus-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-fill.imageset/minus-square-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/minus-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-fill.imageset/minus-square-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/minus-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-fill.imageset/minus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-fill.imageset/minus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-fill.imageset/money-wavy-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/money-wavy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-fill.imageset/money-wavy-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/money-wavy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-fill.imageset/money-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/money.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-fill.imageset/money-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/money.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-fill.imageset/monitor-arrow-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/monitor-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-fill.imageset/monitor-arrow-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/monitor-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-fill.imageset/monitor-play-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/monitor-play.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-fill.imageset/monitor-play-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/monitor-play.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-fill.imageset/monitor-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/monitor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-fill.imageset/monitor-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/monitor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-fill.imageset/moon-stars-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/moon-stars.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-fill.imageset/moon-stars-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/moon-stars.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-fill.imageset/moon-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/moon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-fill.imageset/moon-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/moon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-fill.imageset/moped-front-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/moped-front.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-fill.imageset/moped-front-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/moped-front.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-fill.imageset/moped-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/moped.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-fill.imageset/moped-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/moped.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-fill.imageset/mosque-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/mosque.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-fill.imageset/mosque-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/mosque.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-fill.imageset/motorcycle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/motorcycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-fill.imageset/motorcycle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/motorcycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-fill.imageset/mountains-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/mountains.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-fill.imageset/mountains-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/mountains.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-fill.imageset/mouse-left-click-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/mouse-left-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-fill.imageset/mouse-left-click-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/mouse-left-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-fill.imageset/mouse-middle-click-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/mouse-middle-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-fill.imageset/mouse-middle-click-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/mouse-middle-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-fill.imageset/mouse-right-click-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/mouse-right-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-fill.imageset/mouse-right-click-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/mouse-right-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-fill.imageset/mouse-scroll-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/mouse-scroll.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-fill.imageset/mouse-scroll-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/mouse-scroll.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-fill.imageset/mouse-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/mouse-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-fill.imageset/mouse-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/mouse-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-fill.imageset/mouse-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/mouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-fill.imageset/mouse-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/mouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-fill.imageset/music-note-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/music-note-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-fill.imageset/music-note-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/music-note-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-fill.imageset/music-note-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/music-note.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-fill.imageset/music-note-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/music-note.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-fill.imageset/music-notes-minus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/music-notes-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-fill.imageset/music-notes-minus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/music-notes-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-fill.imageset/music-notes-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/music-notes-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-fill.imageset/music-notes-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/music-notes-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-fill.imageset/music-notes-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/music-notes-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-fill.imageset/music-notes-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/music-notes-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-fill.imageset/music-notes-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/music-notes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-fill.imageset/music-notes-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/music-notes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-fill.imageset/navigation-arrow-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/navigation-arrow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-fill.imageset/navigation-arrow-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/navigation-arrow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-fill.imageset/needle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/needle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-fill.imageset/needle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/needle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-fill.imageset/network-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/network-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-fill.imageset/network-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/network-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-fill.imageset/network-x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/network-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-fill.imageset/network-x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/network-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-fill.imageset/network-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/network.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-fill.imageset/network-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/network.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-fill.imageset/newspaper-clipping-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/newspaper-clipping.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-fill.imageset/newspaper-clipping-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/newspaper-clipping.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-fill.imageset/newspaper-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/newspaper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-fill.imageset/newspaper-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/newspaper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-fill.imageset/not-equals-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/not-equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-fill.imageset/not-equals-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/not-equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-fill.imageset/not-member-of-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/not-member-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-fill.imageset/not-member-of-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/not-member-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-fill.imageset/not-subset-of-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/not-subset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-fill.imageset/not-subset-of-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/not-subset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-fill.imageset/not-superset-of-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/not-superset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-fill.imageset/not-superset-of-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/not-superset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-fill.imageset/notches-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/notches.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-fill.imageset/notches-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/notches.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-fill.imageset/note-blank-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/note-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-fill.imageset/note-blank-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/note-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-fill.imageset/note-pencil-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/note-pencil.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-fill.imageset/note-pencil-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/note-pencil.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-fill.imageset/note-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/note.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-fill.imageset/note-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/note.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-fill.imageset/notebook-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/notebook.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-fill.imageset/notebook-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/notebook.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-fill.imageset/notepad-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/notepad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-fill.imageset/notepad-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/notepad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-fill.imageset/notification-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/notification.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-fill.imageset/notification-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/notification.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-fill.imageset/notion-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/notion-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-fill.imageset/notion-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/notion-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-fill.imageset/nuclear-plant-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/nuclear-plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-fill.imageset/nuclear-plant-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/nuclear-plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-fill.imageset/number-circle-eight-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-fill.imageset/number-circle-eight-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-fill.imageset/number-circle-five-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-fill.imageset/number-circle-five-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-fill.imageset/number-circle-four-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-fill.imageset/number-circle-four-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-fill.imageset/number-circle-nine-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-fill.imageset/number-circle-nine-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-fill.imageset/number-circle-one-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-fill.imageset/number-circle-one-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-fill.imageset/number-circle-seven-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-fill.imageset/number-circle-seven-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-fill.imageset/number-circle-six-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-fill.imageset/number-circle-six-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-fill.imageset/number-circle-three-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-fill.imageset/number-circle-three-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-fill.imageset/number-circle-two-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-fill.imageset/number-circle-two-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-fill.imageset/number-circle-zero-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-fill.imageset/number-circle-zero-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-circle-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-fill.imageset/number-eight-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-fill.imageset/number-eight-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-fill.imageset/number-five-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-fill.imageset/number-five-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-fill.imageset/number-four-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-fill.imageset/number-four-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-fill.imageset/number-nine-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-fill.imageset/number-nine-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-fill.imageset/number-one-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-fill.imageset/number-one-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-fill.imageset/number-seven-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-fill.imageset/number-seven-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-fill.imageset/number-six-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-fill.imageset/number-six-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-fill.imageset/number-square-eight-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-fill.imageset/number-square-eight-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-fill.imageset/number-square-five-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-fill.imageset/number-square-five-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-fill.imageset/number-square-four-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-fill.imageset/number-square-four-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-fill.imageset/number-square-nine-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-fill.imageset/number-square-nine-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-fill.imageset/number-square-one-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-fill.imageset/number-square-one-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-fill.imageset/number-square-seven-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-fill.imageset/number-square-seven-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-fill.imageset/number-square-six-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-fill.imageset/number-square-six-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-fill.imageset/number-square-three-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-fill.imageset/number-square-three-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-fill.imageset/number-square-two-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-fill.imageset/number-square-two-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-fill.imageset/number-square-zero-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-fill.imageset/number-square-zero-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-square-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-fill.imageset/number-three-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-fill.imageset/number-three-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-fill.imageset/number-two-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-fill.imageset/number-two-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-fill.imageset/number-zero-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-fill.imageset/number-zero-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/number-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-fill.imageset/numpad-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/numpad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-fill.imageset/numpad-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/numpad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-fill.imageset/nut-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/nut.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-fill.imageset/nut-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/nut.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-fill.imageset/ny-times-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/ny-times-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-fill.imageset/ny-times-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/ny-times-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-fill.imageset/octagon-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/octagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-fill.imageset/octagon-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/octagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-fill.imageset/office-chair-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/office-chair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-fill.imageset/office-chair-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/office-chair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-fill.imageset/onigiri-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/onigiri.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-fill.imageset/onigiri-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/onigiri.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-fill.imageset/open-ai-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/open-ai-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-fill.imageset/open-ai-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/open-ai-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-fill.imageset/option-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/option.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-fill.imageset/option-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/option.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-fill.imageset/orange-slice-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/orange-slice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-fill.imageset/orange-slice-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/orange-slice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-fill.imageset/orange-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/orange.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-fill.imageset/orange-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/orange.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-fill.imageset/oven-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/oven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-fill.imageset/oven-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/oven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-fill.imageset/package-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/package.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-fill.imageset/package-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/package.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-fill.imageset/paint-brush-broad-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/paint-brush-broad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-fill.imageset/paint-brush-broad-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/paint-brush-broad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-fill.imageset/paint-brush-household-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/paint-brush-household.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-fill.imageset/paint-brush-household-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/paint-brush-household.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-fill.imageset/paint-brush-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/paint-brush.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-fill.imageset/paint-brush-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/paint-brush.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-fill.imageset/paint-bucket-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/paint-bucket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-fill.imageset/paint-bucket-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/paint-bucket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-fill.imageset/paint-roller-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/paint-roller.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-fill.imageset/paint-roller-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/paint-roller.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-fill.imageset/palette-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/palette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-fill.imageset/palette-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/palette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-fill.imageset/panorama-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/panorama.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-fill.imageset/panorama-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/panorama.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-fill.imageset/pants-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pants.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-fill.imageset/pants-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pants.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-fill.imageset/paper-plane-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/paper-plane-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-fill.imageset/paper-plane-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/paper-plane-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-fill.imageset/paper-plane-tilt-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/paper-plane-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-fill.imageset/paper-plane-tilt-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/paper-plane-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-fill.imageset/paper-plane-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/paper-plane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-fill.imageset/paper-plane-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/paper-plane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-fill.imageset/paperclip-horizontal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/paperclip-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-fill.imageset/paperclip-horizontal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/paperclip-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-fill.imageset/paperclip-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/paperclip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-fill.imageset/paperclip-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/paperclip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-fill.imageset/parachute-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/parachute.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-fill.imageset/parachute-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/parachute.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-fill.imageset/paragraph-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/paragraph.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-fill.imageset/paragraph-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/paragraph.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-fill.imageset/parallelogram-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/parallelogram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-fill.imageset/parallelogram-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/parallelogram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-fill.imageset/park-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/park.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-fill.imageset/park-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/park.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-fill.imageset/password-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/password.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-fill.imageset/password-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/password.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-fill.imageset/path-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/path.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-fill.imageset/path-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/path.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-fill.imageset/patreon-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/patreon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-fill.imageset/patreon-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/patreon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-fill.imageset/pause-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pause-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-fill.imageset/pause-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pause-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-fill.imageset/pause-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-fill.imageset/pause-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-fill.imageset/paw-print-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/paw-print.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-fill.imageset/paw-print-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/paw-print.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-fill.imageset/paypal-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/paypal-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-fill.imageset/paypal-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/paypal-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-fill.imageset/peace-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/peace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-fill.imageset/peace-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/peace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-fill.imageset/pen-nib-straight-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pen-nib-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-fill.imageset/pen-nib-straight-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pen-nib-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-fill.imageset/pen-nib-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pen-nib.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-fill.imageset/pen-nib-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pen-nib.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-fill.imageset/pen-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-fill.imageset/pen-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-fill.imageset/pencil-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-fill.imageset/pencil-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-fill.imageset/pencil-line-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-fill.imageset/pencil-line-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-fill.imageset/pencil-ruler-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil-ruler.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-fill.imageset/pencil-ruler-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil-ruler.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-fill.imageset/pencil-simple-line-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil-simple-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-fill.imageset/pencil-simple-line-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil-simple-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-fill.imageset/pencil-simple-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-fill.imageset/pencil-simple-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-fill.imageset/pencil-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-fill.imageset/pencil-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-fill.imageset/pencil-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-fill.imageset/pencil-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-fill.imageset/pencil-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-fill.imageset/pencil-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pencil.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-fill.imageset/pentagon-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pentagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-fill.imageset/pentagon-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pentagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-fill.imageset/pentagram-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pentagram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-fill.imageset/pentagram-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pentagram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-fill.imageset/pepper-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pepper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-fill.imageset/pepper-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pepper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-fill.imageset/percent-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/percent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-fill.imageset/percent-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/percent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-fill.imageset/person-arms-spread-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-arms-spread.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-fill.imageset/person-arms-spread-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-arms-spread.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-fill.imageset/person-simple-bike-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-bike.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-fill.imageset/person-simple-bike-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-bike.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-fill.imageset/person-simple-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-fill.imageset/person-simple-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-fill.imageset/person-simple-hike-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-hike.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-fill.imageset/person-simple-hike-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-hike.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-fill.imageset/person-simple-run-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-run.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-fill.imageset/person-simple-run-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-run.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-fill.imageset/person-simple-ski-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-ski.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-fill.imageset/person-simple-ski-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-ski.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-fill.imageset/person-simple-snowboard-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-snowboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-fill.imageset/person-simple-snowboard-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-snowboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-fill.imageset/person-simple-swim-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-swim.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-fill.imageset/person-simple-swim-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-swim.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-fill.imageset/person-simple-tai-chi-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-tai-chi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-fill.imageset/person-simple-tai-chi-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-tai-chi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-fill.imageset/person-simple-throw-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-throw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-fill.imageset/person-simple-throw-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-throw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-fill.imageset/person-simple-walk-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-walk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-fill.imageset/person-simple-walk-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple-walk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-fill.imageset/person-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-fill.imageset/person-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/person-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-fill.imageset/person-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/person.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-fill.imageset/person-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/person.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-fill.imageset/perspective-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/perspective.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-fill.imageset/perspective-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/perspective.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-fill.imageset/phone-call-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-call.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-fill.imageset/phone-call-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-call.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-fill.imageset/phone-disconnect-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-disconnect.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-fill.imageset/phone-disconnect-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-disconnect.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-fill.imageset/phone-incoming-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-incoming.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-fill.imageset/phone-incoming-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-incoming.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-fill.imageset/phone-list-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-fill.imageset/phone-list-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-fill.imageset/phone-outgoing-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-outgoing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-fill.imageset/phone-outgoing-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-outgoing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-fill.imageset/phone-pause-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-fill.imageset/phone-pause-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-fill.imageset/phone-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-fill.imageset/phone-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-fill.imageset/phone-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-fill.imageset/phone-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-fill.imageset/phone-transfer-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-transfer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-fill.imageset/phone-transfer-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-transfer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-fill.imageset/phone-x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-fill.imageset/phone-x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-fill.imageset/phone-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-fill.imageset/phone-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/phone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-fill.imageset/phosphor-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/phosphor-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-fill.imageset/phosphor-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/phosphor-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-fill.imageset/pi-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-fill.imageset/pi-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-fill.imageset/piano-keys-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/piano-keys.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-fill.imageset/piano-keys-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/piano-keys.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-fill.imageset/picnic-table-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/picnic-table.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-fill.imageset/picnic-table-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/picnic-table.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-fill.imageset/picture-in-picture-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/picture-in-picture.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-fill.imageset/picture-in-picture-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/picture-in-picture.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-fill.imageset/piggy-bank-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/piggy-bank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-fill.imageset/piggy-bank-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/piggy-bank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-fill.imageset/pill-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pill.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-fill.imageset/pill-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pill.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-fill.imageset/ping-pong-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/ping-pong.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-fill.imageset/ping-pong-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/ping-pong.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-fill.imageset/pint-glass-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pint-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-fill.imageset/pint-glass-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pint-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-fill.imageset/pinterest-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pinterest-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-fill.imageset/pinterest-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pinterest-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-fill.imageset/pinwheel-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pinwheel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-fill.imageset/pinwheel-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pinwheel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-fill.imageset/pipe-wrench-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pipe-wrench.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-fill.imageset/pipe-wrench-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pipe-wrench.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-fill.imageset/pipe-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pipe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-fill.imageset/pipe-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pipe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-fill.imageset/pix-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pix-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-fill.imageset/pix-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pix-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-fill.imageset/pizza-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pizza.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-fill.imageset/pizza-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pizza.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-fill.imageset/placeholder-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/placeholder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-fill.imageset/placeholder-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/placeholder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-fill.imageset/planet-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/planet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-fill.imageset/planet-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/planet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-fill.imageset/plant-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-fill.imageset/plant-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-fill.imageset/play-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/play-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-fill.imageset/play-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/play-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-fill.imageset/play-pause-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/play-pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-fill.imageset/play-pause-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/play-pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-fill.imageset/play-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/play.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-fill.imageset/play-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/play.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-fill.imageset/playlist-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/playlist.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-fill.imageset/playlist-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/playlist.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-fill.imageset/plug-charging-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/plug-charging.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-fill.imageset/plug-charging-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/plug-charging.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-fill.imageset/plug-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/plug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-fill.imageset/plug-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/plug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-fill.imageset/plugs-connected-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/plugs-connected.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-fill.imageset/plugs-connected-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/plugs-connected.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-fill.imageset/plugs-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/plugs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-fill.imageset/plugs-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/plugs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-fill.imageset/plus-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/plus-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-fill.imageset/plus-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/plus-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-fill.imageset/plus-minus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/plus-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-fill.imageset/plus-minus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/plus-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-fill.imageset/plus-square-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/plus-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-fill.imageset/plus-square-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/plus-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-fill.imageset/plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-fill.imageset/plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-fill.imageset/poker-chip-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/poker-chip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-fill.imageset/poker-chip-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/poker-chip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-fill.imageset/police-car-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/police-car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-fill.imageset/police-car-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/police-car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-fill.imageset/polygon-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/polygon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-fill.imageset/polygon-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/polygon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-fill.imageset/popcorn-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/popcorn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-fill.imageset/popcorn-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/popcorn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-fill.imageset/popsicle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/popsicle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-fill.imageset/popsicle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/popsicle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-fill.imageset/potted-plant-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/potted-plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-fill.imageset/potted-plant-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/potted-plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-fill.imageset/power-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/power.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-fill.imageset/power-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/power.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-fill.imageset/prescription-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/prescription.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-fill.imageset/prescription-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/prescription.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-fill.imageset/presentation-chart-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/presentation-chart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-fill.imageset/presentation-chart-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/presentation-chart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-fill.imageset/presentation-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/presentation.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-fill.imageset/presentation-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/presentation.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-fill.imageset/printer-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/printer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-fill.imageset/printer-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/printer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-fill.imageset/prohibit-inset-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/prohibit-inset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-fill.imageset/prohibit-inset-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/prohibit-inset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-fill.imageset/prohibit-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/prohibit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-fill.imageset/prohibit-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/prohibit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-fill.imageset/projector-screen-chart-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/projector-screen-chart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-fill.imageset/projector-screen-chart-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/projector-screen-chart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-fill.imageset/projector-screen-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/projector-screen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-fill.imageset/projector-screen-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/projector-screen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-fill.imageset/pulse-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/pulse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-fill.imageset/pulse-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/pulse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-fill.imageset/push-pin-simple-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/push-pin-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-fill.imageset/push-pin-simple-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/push-pin-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-fill.imageset/push-pin-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/push-pin-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-fill.imageset/push-pin-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/push-pin-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-fill.imageset/push-pin-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/push-pin-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-fill.imageset/push-pin-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/push-pin-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-fill.imageset/push-pin-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/push-pin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-fill.imageset/push-pin-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/push-pin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-fill.imageset/puzzle-piece-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/puzzle-piece.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-fill.imageset/puzzle-piece-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/puzzle-piece.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-fill.imageset/qr-code-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/qr-code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-fill.imageset/qr-code-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/qr-code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-fill.imageset/question-mark-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/question-mark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-fill.imageset/question-mark-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/question-mark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-fill.imageset/question-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/question.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-fill.imageset/question-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/question.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-fill.imageset/queue-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/queue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-fill.imageset/queue-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/queue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-fill.imageset/quotes-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/quotes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-fill.imageset/quotes-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/quotes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-fill.imageset/rabbit-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/rabbit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-fill.imageset/rabbit-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/rabbit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-fill.imageset/racquet-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/racquet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-fill.imageset/racquet-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/racquet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-fill.imageset/radical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/radical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-fill.imageset/radical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/radical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-fill.imageset/radio-button-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/radio-button.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-fill.imageset/radio-button-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/radio-button.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-fill.imageset/radio-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/radio.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-fill.imageset/radio-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/radio.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-fill.imageset/radioactive-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/radioactive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-fill.imageset/radioactive-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/radioactive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-fill.imageset/rainbow-cloud-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/rainbow-cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-fill.imageset/rainbow-cloud-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/rainbow-cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-fill.imageset/rainbow-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/rainbow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-fill.imageset/rainbow-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/rainbow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-fill.imageset/ranking-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/ranking.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-fill.imageset/ranking-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/ranking.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-fill.imageset/read-cv-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/read-cv-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-fill.imageset/read-cv-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/read-cv-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-fill.imageset/receipt-x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/receipt-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-fill.imageset/receipt-x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/receipt-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-fill.imageset/receipt-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/receipt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-fill.imageset/receipt-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/receipt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-fill.imageset/record-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/record.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-fill.imageset/record-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/record.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-fill.imageset/rectangle-dashed-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/rectangle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-fill.imageset/rectangle-dashed-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/rectangle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-fill.imageset/rectangle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/rectangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-fill.imageset/rectangle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/rectangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-fill.imageset/recycle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/recycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-fill.imageset/recycle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/recycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-fill.imageset/reddit-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/reddit-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-fill.imageset/reddit-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/reddit-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-fill.imageset/repeat-once-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/repeat-once.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-fill.imageset/repeat-once-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/repeat-once.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-fill.imageset/repeat-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/repeat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-fill.imageset/repeat-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/repeat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-fill.imageset/replit-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/replit-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-fill.imageset/replit-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/replit-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-fill.imageset/resize-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/resize.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-fill.imageset/resize-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/resize.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-fill.imageset/rewind-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/rewind-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-fill.imageset/rewind-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/rewind-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-fill.imageset/rewind-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/rewind.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-fill.imageset/rewind-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/rewind.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-fill.imageset/road-horizon-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/road-horizon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-fill.imageset/road-horizon-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/road-horizon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-fill.imageset/robot-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/robot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-fill.imageset/robot-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/robot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-fill.imageset/rocket-launch-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/rocket-launch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-fill.imageset/rocket-launch-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/rocket-launch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-fill.imageset/rocket-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/rocket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-fill.imageset/rocket-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/rocket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-fill.imageset/rows-plus-bottom-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/rows-plus-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-fill.imageset/rows-plus-bottom-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/rows-plus-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-fill.imageset/rows-plus-top-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/rows-plus-top.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-fill.imageset/rows-plus-top-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/rows-plus-top.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-fill.imageset/rows-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/rows.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-fill.imageset/rows-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/rows.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-fill.imageset/rss-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/rss-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-fill.imageset/rss-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/rss-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-fill.imageset/rss-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/rss.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-fill.imageset/rss-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/rss.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-fill.imageset/rug-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/rug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-fill.imageset/rug-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/rug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-fill.imageset/ruler-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/ruler.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-fill.imageset/ruler-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/ruler.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-fill.imageset/sailboat-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sailboat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-fill.imageset/sailboat-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sailboat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-fill.imageset/scales-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/scales.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-fill.imageset/scales-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/scales.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-fill.imageset/scan-smiley-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/scan-smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-fill.imageset/scan-smiley-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/scan-smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-fill.imageset/scan-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/scan.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-fill.imageset/scan-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/scan.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-fill.imageset/scissors-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/scissors.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-fill.imageset/scissors-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/scissors.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-fill.imageset/scooter-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/scooter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-fill.imageset/scooter-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/scooter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-fill.imageset/screencast-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/screencast.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-fill.imageset/screencast-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/screencast.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-fill.imageset/screwdriver-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/screwdriver.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-fill.imageset/screwdriver-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/screwdriver.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-fill.imageset/scribble-loop-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/scribble-loop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-fill.imageset/scribble-loop-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/scribble-loop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-fill.imageset/scribble-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/scribble.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-fill.imageset/scribble-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/scribble.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-fill.imageset/scroll-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/scroll.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-fill.imageset/scroll-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/scroll.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-fill.imageset/seal-check-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/seal-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-fill.imageset/seal-check-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/seal-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-fill.imageset/seal-percent-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/seal-percent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-fill.imageset/seal-percent-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/seal-percent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-fill.imageset/seal-question-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/seal-question.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-fill.imageset/seal-question-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/seal-question.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-fill.imageset/seal-warning-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/seal-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-fill.imageset/seal-warning-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/seal-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-fill.imageset/seal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/seal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-fill.imageset/seal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/seal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-fill.imageset/seat-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/seat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-fill.imageset/seat-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/seat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-fill.imageset/seatbelt-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/seatbelt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-fill.imageset/seatbelt-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/seatbelt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-fill.imageset/security-camera-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/security-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-fill.imageset/security-camera-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/security-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-fill.imageset/selection-all-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/selection-all.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-fill.imageset/selection-all-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/selection-all.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-fill.imageset/selection-background-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/selection-background.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-fill.imageset/selection-background-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/selection-background.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-fill.imageset/selection-foreground-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/selection-foreground.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-fill.imageset/selection-foreground-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/selection-foreground.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-fill.imageset/selection-inverse-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/selection-inverse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-fill.imageset/selection-inverse-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/selection-inverse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-fill.imageset/selection-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/selection-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-fill.imageset/selection-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/selection-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-fill.imageset/selection-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/selection-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-fill.imageset/selection-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/selection-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-fill.imageset/selection-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/selection.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-fill.imageset/selection-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/selection.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-fill.imageset/shapes-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shapes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-fill.imageset/shapes-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shapes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-fill.imageset/share-fat-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/share-fat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-fill.imageset/share-fat-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/share-fat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-fill.imageset/share-network-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/share-network.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-fill.imageset/share-network-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/share-network.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fill.imageset/share-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/share.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fill.imageset/share-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/share.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-fill.imageset/shield-check-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-fill.imageset/shield-check-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-fill.imageset/shield-checkered-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield-checkered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-fill.imageset/shield-checkered-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield-checkered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-fill.imageset/shield-chevron-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield-chevron.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-fill.imageset/shield-chevron-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield-chevron.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-fill.imageset/shield-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-fill.imageset/shield-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-fill.imageset/shield-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-fill.imageset/shield-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-fill.imageset/shield-star-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-fill.imageset/shield-star-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-fill.imageset/shield-warning-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-fill.imageset/shield-warning-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-fill.imageset/shield-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-fill.imageset/shield-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shield.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-fill.imageset/shipping-container-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shipping-container.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-fill.imageset/shipping-container-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shipping-container.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-fill.imageset/shirt-folded-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shirt-folded.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-fill.imageset/shirt-folded-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shirt-folded.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-fill.imageset/shooting-star-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shooting-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-fill.imageset/shooting-star-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shooting-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-fill.imageset/shopping-bag-open-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shopping-bag-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-fill.imageset/shopping-bag-open-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shopping-bag-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-fill.imageset/shopping-bag-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shopping-bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-fill.imageset/shopping-bag-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shopping-bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-fill.imageset/shopping-cart-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shopping-cart-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-fill.imageset/shopping-cart-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shopping-cart-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-fill.imageset/shopping-cart-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shopping-cart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-fill.imageset/shopping-cart-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shopping-cart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-fill.imageset/shovel-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shovel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-fill.imageset/shovel-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shovel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-fill.imageset/shower-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-fill.imageset/shower-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-fill.imageset/shrimp-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shrimp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-fill.imageset/shrimp-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shrimp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-fill.imageset/shuffle-angular-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shuffle-angular.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-fill.imageset/shuffle-angular-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shuffle-angular.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-fill.imageset/shuffle-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shuffle-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-fill.imageset/shuffle-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shuffle-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-fill.imageset/shuffle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/shuffle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-fill.imageset/shuffle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/shuffle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-fill.imageset/sidebar-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sidebar-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-fill.imageset/sidebar-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sidebar-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-fill.imageset/sidebar-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sidebar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-fill.imageset/sidebar-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sidebar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-fill.imageset/sigma-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sigma.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-fill.imageset/sigma-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sigma.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-fill.imageset/sign-in-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sign-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-fill.imageset/sign-in-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sign-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-fill.imageset/sign-out-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sign-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-fill.imageset/sign-out-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sign-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-fill.imageset/signature-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/signature.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-fill.imageset/signature-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/signature.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-fill.imageset/signpost-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/signpost.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-fill.imageset/signpost-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/signpost.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-fill.imageset/sim-card-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sim-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-fill.imageset/sim-card-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sim-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-fill.imageset/siren-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/siren.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-fill.imageset/siren-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/siren.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-fill.imageset/sketch-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sketch-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-fill.imageset/sketch-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sketch-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-fill.imageset/skip-back-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/skip-back-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-fill.imageset/skip-back-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/skip-back-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-fill.imageset/skip-back-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/skip-back.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-fill.imageset/skip-back-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/skip-back.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-fill.imageset/skip-forward-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/skip-forward-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-fill.imageset/skip-forward-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/skip-forward-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-fill.imageset/skip-forward-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/skip-forward.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-fill.imageset/skip-forward-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/skip-forward.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-fill.imageset/skull-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/skull.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-fill.imageset/skull-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/skull.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-fill.imageset/skype-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/skype-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-fill.imageset/skype-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/skype-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-fill.imageset/slack-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/slack-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-fill.imageset/slack-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/slack-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-fill.imageset/sliders-horizontal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sliders-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-fill.imageset/sliders-horizontal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sliders-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-fill.imageset/sliders-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sliders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-fill.imageset/sliders-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sliders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-fill.imageset/slideshow-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/slideshow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-fill.imageset/slideshow-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/slideshow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-fill.imageset/smiley-angry-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-angry.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-fill.imageset/smiley-angry-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-angry.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-fill.imageset/smiley-blank-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-fill.imageset/smiley-blank-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-fill.imageset/smiley-meh-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-meh.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-fill.imageset/smiley-meh-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-meh.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-fill.imageset/smiley-melting-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-melting.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-fill.imageset/smiley-melting-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-melting.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-fill.imageset/smiley-nervous-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-nervous.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-fill.imageset/smiley-nervous-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-nervous.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-fill.imageset/smiley-sad-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-sad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-fill.imageset/smiley-sad-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-sad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-fill.imageset/smiley-sticker-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-sticker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-fill.imageset/smiley-sticker-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-sticker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-fill.imageset/smiley-wink-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-wink.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-fill.imageset/smiley-wink-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-wink.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-fill.imageset/smiley-x-eyes-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-x-eyes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-fill.imageset/smiley-x-eyes-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley-x-eyes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-fill.imageset/smiley-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-fill.imageset/smiley-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-fill.imageset/snapchat-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/snapchat-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-fill.imageset/snapchat-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/snapchat-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-fill.imageset/sneaker-move-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sneaker-move.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-fill.imageset/sneaker-move-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sneaker-move.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-fill.imageset/sneaker-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sneaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-fill.imageset/sneaker-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sneaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-fill.imageset/snowflake-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/snowflake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-fill.imageset/snowflake-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/snowflake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-fill.imageset/soccer-ball-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/soccer-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-fill.imageset/soccer-ball-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/soccer-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-fill.imageset/sock-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-fill.imageset/sock-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-fill.imageset/solar-panel-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/solar-panel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-fill.imageset/solar-panel-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/solar-panel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-fill.imageset/solar-roof-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/solar-roof.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-fill.imageset/solar-roof-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/solar-roof.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-fill.imageset/sort-ascending-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sort-ascending.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-fill.imageset/sort-ascending-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sort-ascending.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-fill.imageset/sort-descending-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sort-descending.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-fill.imageset/sort-descending-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sort-descending.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-fill.imageset/soundcloud-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/soundcloud-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-fill.imageset/soundcloud-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/soundcloud-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-fill.imageset/spade-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/spade.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-fill.imageset/spade-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/spade.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-fill.imageset/sparkle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sparkle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-fill.imageset/sparkle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sparkle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-fill.imageset/speaker-hifi-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-hifi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-fill.imageset/speaker-hifi-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-hifi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-fill.imageset/speaker-high-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-fill.imageset/speaker-high-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-fill.imageset/speaker-low-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-fill.imageset/speaker-low-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-fill.imageset/speaker-none-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-fill.imageset/speaker-none-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-fill.imageset/speaker-simple-high-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-simple-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-fill.imageset/speaker-simple-high-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-simple-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-fill.imageset/speaker-simple-low-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-simple-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-fill.imageset/speaker-simple-low-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-simple-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-fill.imageset/speaker-simple-none-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-simple-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-fill.imageset/speaker-simple-none-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-simple-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-fill.imageset/speaker-simple-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-fill.imageset/speaker-simple-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-fill.imageset/speaker-simple-x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-fill.imageset/speaker-simple-x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-fill.imageset/speaker-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-fill.imageset/speaker-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-fill.imageset/speaker-x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-fill.imageset/speaker-x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/speaker-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-fill.imageset/speedometer-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/speedometer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-fill.imageset/speedometer-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/speedometer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-fill.imageset/sphere-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sphere.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-fill.imageset/sphere-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sphere.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-fill.imageset/spinner-ball-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/spinner-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-fill.imageset/spinner-ball-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/spinner-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-fill.imageset/spinner-gap-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/spinner-gap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-fill.imageset/spinner-gap-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/spinner-gap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-fill.imageset/spinner-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/spinner.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-fill.imageset/spinner-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/spinner.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-fill.imageset/spiral-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/spiral.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-fill.imageset/spiral-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/spiral.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-fill.imageset/split-horizontal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/split-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-fill.imageset/split-horizontal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/split-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-fill.imageset/split-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/split-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-fill.imageset/split-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/split-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-fill.imageset/spotify-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/spotify-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-fill.imageset/spotify-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/spotify-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-fill.imageset/spray-bottle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/spray-bottle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-fill.imageset/spray-bottle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/spray-bottle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-fill.imageset/square-half-bottom-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/square-half-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-fill.imageset/square-half-bottom-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/square-half-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-fill.imageset/square-half-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/square-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-fill.imageset/square-half-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/square-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-fill.imageset/square-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/square-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-fill.imageset/square-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/square-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-fill.imageset/square-split-horizontal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/square-split-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-fill.imageset/square-split-horizontal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/square-split-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-fill.imageset/square-split-vertical-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/square-split-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-fill.imageset/square-split-vertical-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/square-split-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-fill.imageset/square-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-fill.imageset/square-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-fill.imageset/squares-four-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/squares-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-fill.imageset/squares-four-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/squares-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-fill.imageset/stack-minus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/stack-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-fill.imageset/stack-minus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/stack-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-fill.imageset/stack-overflow-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/stack-overflow-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-fill.imageset/stack-overflow-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/stack-overflow-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-fill.imageset/stack-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/stack-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-fill.imageset/stack-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/stack-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-fill.imageset/stack-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/stack-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-fill.imageset/stack-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/stack-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-fill.imageset/stack-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/stack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-fill.imageset/stack-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/stack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-fill.imageset/stairs-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/stairs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-fill.imageset/stairs-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/stairs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-fill.imageset/stamp-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/stamp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-fill.imageset/stamp-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/stamp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-fill.imageset/standard-definition-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/standard-definition.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-fill.imageset/standard-definition-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/standard-definition.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-fill.imageset/star-and-crescent-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/star-and-crescent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-fill.imageset/star-and-crescent-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/star-and-crescent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-fill.imageset/star-four-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/star-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-fill.imageset/star-four-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/star-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-fill.imageset/star-half-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/star-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-fill.imageset/star-half-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/star-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-fill.imageset/star-of-david-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/star-of-david.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-fill.imageset/star-of-david-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/star-of-david.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-fill.imageset/star-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-fill.imageset/star-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-fill.imageset/steam-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/steam-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-fill.imageset/steam-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/steam-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-fill.imageset/steering-wheel-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/steering-wheel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-fill.imageset/steering-wheel-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/steering-wheel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-fill.imageset/steps-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/steps.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-fill.imageset/steps-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/steps.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-fill.imageset/stethoscope-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/stethoscope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-fill.imageset/stethoscope-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/stethoscope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-fill.imageset/sticker-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sticker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-fill.imageset/sticker-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sticker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-fill.imageset/stool-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/stool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-fill.imageset/stool-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/stool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-fill.imageset/stop-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/stop-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-fill.imageset/stop-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/stop-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-fill.imageset/stop-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/stop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-fill.imageset/stop-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/stop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-fill.imageset/storefront-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/storefront.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-fill.imageset/storefront-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/storefront.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-fill.imageset/strategy-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/strategy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-fill.imageset/strategy-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/strategy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-fill.imageset/stripe-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/stripe-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-fill.imageset/stripe-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/stripe-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-fill.imageset/student-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/student.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-fill.imageset/student-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/student.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-fill.imageset/subset-of-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/subset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-fill.imageset/subset-of-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/subset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-fill.imageset/subset-proper-of-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/subset-proper-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-fill.imageset/subset-proper-of-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/subset-proper-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-fill.imageset/subtitles-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/subtitles-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-fill.imageset/subtitles-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/subtitles-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-fill.imageset/subtitles-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/subtitles.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-fill.imageset/subtitles-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/subtitles.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-fill.imageset/subtract-square-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/subtract-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-fill.imageset/subtract-square-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/subtract-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-fill.imageset/subtract-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/subtract.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-fill.imageset/subtract-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/subtract.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-fill.imageset/subway-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/subway.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-fill.imageset/subway-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/subway.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-fill.imageset/suitcase-rolling-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/suitcase-rolling.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-fill.imageset/suitcase-rolling-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/suitcase-rolling.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-fill.imageset/suitcase-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/suitcase-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-fill.imageset/suitcase-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/suitcase-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-fill.imageset/suitcase-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/suitcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-fill.imageset/suitcase-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/suitcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-fill.imageset/sun-dim-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sun-dim.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-fill.imageset/sun-dim-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sun-dim.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-fill.imageset/sun-horizon-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sun-horizon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-fill.imageset/sun-horizon-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sun-horizon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-fill.imageset/sun-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sun.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-fill.imageset/sun-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sun.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-fill.imageset/sunglasses-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sunglasses.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-fill.imageset/sunglasses-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sunglasses.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-fill.imageset/superset-of-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/superset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-fill.imageset/superset-of-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/superset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-fill.imageset/superset-proper-of-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/superset-proper-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-fill.imageset/superset-proper-of-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/superset-proper-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-fill.imageset/swap-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/swap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-fill.imageset/swap-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/swap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-fill.imageset/swatches-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/swatches.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-fill.imageset/swatches-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/swatches.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-fill.imageset/swimming-pool-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/swimming-pool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-fill.imageset/swimming-pool-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/swimming-pool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-fill.imageset/sword-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/sword.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-fill.imageset/sword-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/sword.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-fill.imageset/synagogue-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/synagogue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-fill.imageset/synagogue-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/synagogue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-fill.imageset/syringe-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/syringe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-fill.imageset/syringe-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/syringe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-fill.imageset/t-shirt-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/t-shirt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-fill.imageset/t-shirt-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/t-shirt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-fill.imageset/table-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/table.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-fill.imageset/table-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/table.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-fill.imageset/tabs-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tabs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-fill.imageset/tabs-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tabs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-fill.imageset/tag-chevron-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tag-chevron.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-fill.imageset/tag-chevron-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tag-chevron.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-fill.imageset/tag-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-fill.imageset/tag-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-fill.imageset/tag-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-fill.imageset/tag-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-fill.imageset/target-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/target.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-fill.imageset/target-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/target.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-fill.imageset/taxi-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/taxi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-fill.imageset/taxi-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/taxi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-fill.imageset/tea-bag-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tea-bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-fill.imageset/tea-bag-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tea-bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-fill.imageset/telegram-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/telegram-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-fill.imageset/telegram-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/telegram-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-fill.imageset/television-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/television-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-fill.imageset/television-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/television-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-fill.imageset/television-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/television.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-fill.imageset/television-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/television.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-fill.imageset/tennis-ball-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tennis-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-fill.imageset/tennis-ball-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tennis-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-fill.imageset/tent-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-fill.imageset/tent-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-fill.imageset/terminal-window-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/terminal-window.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-fill.imageset/terminal-window-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/terminal-window.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-fill.imageset/terminal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/terminal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-fill.imageset/terminal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/terminal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-fill.imageset/test-tube-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/test-tube.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-fill.imageset/test-tube-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/test-tube.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-fill.imageset/text-a-underline-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-a-underline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-fill.imageset/text-a-underline-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-a-underline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-fill.imageset/text-aa-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-aa.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-fill.imageset/text-aa-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-aa.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-fill.imageset/text-align-center-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-align-center.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-fill.imageset/text-align-center-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-align-center.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-fill.imageset/text-align-justify-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-align-justify.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-fill.imageset/text-align-justify-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-align-justify.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-fill.imageset/text-align-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-align-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-fill.imageset/text-align-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-align-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-fill.imageset/text-align-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-align-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-fill.imageset/text-align-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-align-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-fill.imageset/text-b-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-b.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-fill.imageset/text-b-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-b.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-fill.imageset/text-columns-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-columns.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-fill.imageset/text-columns-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-columns.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-fill.imageset/text-h-five-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-h-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-fill.imageset/text-h-five-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-h-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-fill.imageset/text-h-four-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-h-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-fill.imageset/text-h-four-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-h-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-fill.imageset/text-h-one-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-h-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-fill.imageset/text-h-one-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-h-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-fill.imageset/text-h-six-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-h-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-fill.imageset/text-h-six-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-h-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-fill.imageset/text-h-three-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-h-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-fill.imageset/text-h-three-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-h-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-fill.imageset/text-h-two-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-h-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-fill.imageset/text-h-two-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-h-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-fill.imageset/text-h-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-h.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-fill.imageset/text-h-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-h.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-fill.imageset/text-indent-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-indent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-fill.imageset/text-indent-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-indent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-fill.imageset/text-italic-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-italic.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-fill.imageset/text-italic-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-italic.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-fill.imageset/text-outdent-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-outdent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-fill.imageset/text-outdent-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-outdent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-fill.imageset/text-strikethrough-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-strikethrough.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-fill.imageset/text-strikethrough-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-strikethrough.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-fill.imageset/text-subscript-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-subscript.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-fill.imageset/text-subscript-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-subscript.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-fill.imageset/text-superscript-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-superscript.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-fill.imageset/text-superscript-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-superscript.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-fill.imageset/text-t-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-t-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-fill.imageset/text-t-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-t-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-fill.imageset/text-t-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-t.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-fill.imageset/text-t-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-t.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-fill.imageset/text-underline-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-underline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-fill.imageset/text-underline-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/text-underline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-fill.imageset/textbox-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/textbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-fill.imageset/textbox-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/textbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-fill.imageset/thermometer-cold-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/thermometer-cold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-fill.imageset/thermometer-cold-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/thermometer-cold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-fill.imageset/thermometer-hot-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/thermometer-hot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-fill.imageset/thermometer-hot-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/thermometer-hot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-fill.imageset/thermometer-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/thermometer-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-fill.imageset/thermometer-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/thermometer-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-fill.imageset/thermometer-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/thermometer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-fill.imageset/thermometer-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/thermometer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-fill.imageset/threads-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/threads-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-fill.imageset/threads-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/threads-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-fill.imageset/three-d-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/three-d.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-fill.imageset/three-d-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/three-d.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-fill.imageset/thumbs-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/thumbs-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-fill.imageset/thumbs-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/thumbs-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-fill.imageset/thumbs-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/thumbs-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-fill.imageset/thumbs-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/thumbs-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-fill.imageset/ticket-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/ticket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-fill.imageset/ticket-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/ticket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-fill.imageset/tidal-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tidal-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-fill.imageset/tidal-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tidal-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-fill.imageset/tiktok-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tiktok-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-fill.imageset/tiktok-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tiktok-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-fill.imageset/tilde-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tilde.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-fill.imageset/tilde-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tilde.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-fill.imageset/timer-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/timer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-fill.imageset/timer-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/timer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-fill.imageset/tip-jar-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tip-jar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-fill.imageset/tip-jar-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tip-jar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-fill.imageset/tipi-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tipi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-fill.imageset/tipi-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tipi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-fill.imageset/tire-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-fill.imageset/tire-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-fill.imageset/toggle-left-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/toggle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-fill.imageset/toggle-left-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/toggle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-fill.imageset/toggle-right-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/toggle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-fill.imageset/toggle-right-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/toggle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-fill.imageset/toilet-paper-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/toilet-paper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-fill.imageset/toilet-paper-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/toilet-paper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-fill.imageset/toilet-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/toilet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-fill.imageset/toilet-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/toilet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-fill.imageset/toolbox-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/toolbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-fill.imageset/toolbox-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/toolbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-fill.imageset/tooth-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-fill.imageset/tooth-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-fill.imageset/tornado-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tornado.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-fill.imageset/tornado-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tornado.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-fill.imageset/tote-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tote-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-fill.imageset/tote-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tote-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-fill.imageset/tote-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tote.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-fill.imageset/tote-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tote.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-fill.imageset/towel-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/towel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-fill.imageset/towel-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/towel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-fill.imageset/tractor-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tractor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-fill.imageset/tractor-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tractor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-fill.imageset/trademark-registered-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/trademark-registered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-fill.imageset/trademark-registered-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/trademark-registered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-fill.imageset/trademark-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/trademark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-fill.imageset/trademark-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/trademark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-fill.imageset/traffic-cone-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/traffic-cone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-fill.imageset/traffic-cone-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/traffic-cone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-fill.imageset/traffic-sign-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/traffic-sign.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-fill.imageset/traffic-sign-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/traffic-sign.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-fill.imageset/traffic-signal-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/traffic-signal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-fill.imageset/traffic-signal-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/traffic-signal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-fill.imageset/train-regional-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/train-regional.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-fill.imageset/train-regional-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/train-regional.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-fill.imageset/train-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/train-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-fill.imageset/train-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/train-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-fill.imageset/train-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/train.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-fill.imageset/train-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/train.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-fill.imageset/tram-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-fill.imageset/tram-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-fill.imageset/translate-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/translate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-fill.imageset/translate-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/translate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-fill.imageset/trash-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/trash-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-fill.imageset/trash-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/trash-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-fill.imageset/trash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/trash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-fill.imageset/trash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/trash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-fill.imageset/archive-tray-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tray-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-fill.imageset/archive-tray-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tray-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-fill.imageset/tray-arrow-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tray-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-fill.imageset/tray-arrow-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tray-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-fill.imageset/tray-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tray.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-fill.imageset/tray-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tray.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-fill.imageset/treasure-chest-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/treasure-chest.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-fill.imageset/treasure-chest-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/treasure-chest.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-fill.imageset/tree-evergreen-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tree-evergreen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-fill.imageset/tree-evergreen-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tree-evergreen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-fill.imageset/tree-palm-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tree-palm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-fill.imageset/tree-palm-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tree-palm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-fill.imageset/tree-structure-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tree-structure.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-fill.imageset/tree-structure-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tree-structure.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-fill.imageset/tree-view-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tree-view.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-fill.imageset/tree-view-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tree-view.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-fill.imageset/tree-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tree.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-fill.imageset/tree-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tree.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-fill.imageset/trend-down-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/trend-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-fill.imageset/trend-down-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/trend-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-fill.imageset/trend-up-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/trend-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-fill.imageset/trend-up-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/trend-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-fill.imageset/triangle-dashed-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/triangle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-fill.imageset/triangle-dashed-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/triangle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-fill.imageset/triangle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/triangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-fill.imageset/triangle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/triangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-fill.imageset/trolley-suitcase-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/trolley-suitcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-fill.imageset/trolley-suitcase-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/trolley-suitcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-fill.imageset/trolley-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/trolley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-fill.imageset/trolley-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/trolley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-fill.imageset/trophy-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/trophy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-fill.imageset/trophy-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/trophy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-fill.imageset/truck-trailer-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/truck-trailer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-fill.imageset/truck-trailer-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/truck-trailer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-fill.imageset/truck-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/truck.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-fill.imageset/truck-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/truck.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-fill.imageset/tumblr-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/tumblr-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-fill.imageset/tumblr-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/tumblr-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-fill.imageset/twitch-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/twitch-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-fill.imageset/twitch-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/twitch-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-fill.imageset/twitter-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/twitter-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-fill.imageset/twitter-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/twitter-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-fill.imageset/umbrella-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/umbrella-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-fill.imageset/umbrella-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/umbrella-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-fill.imageset/umbrella-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/umbrella.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-fill.imageset/umbrella-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/umbrella.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-fill.imageset/union-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/union.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-fill.imageset/union-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/union.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-fill.imageset/unite-square-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/unite-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-fill.imageset/unite-square-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/unite-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-fill.imageset/unite-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/unite.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-fill.imageset/unite-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/unite.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-fill.imageset/upload-simple-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/upload-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-fill.imageset/upload-simple-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/upload-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-fill.imageset/upload-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/upload.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-fill.imageset/upload-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/upload.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-fill.imageset/usb-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/usb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-fill.imageset/usb-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/usb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-fill.imageset/user-check-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-fill.imageset/user-check-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-fill.imageset/user-circle-check-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-circle-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-fill.imageset/user-circle-check-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-circle-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-fill.imageset/user-circle-dashed-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-circle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-fill.imageset/user-circle-dashed-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-circle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-fill.imageset/user-circle-gear-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-circle-gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-fill.imageset/user-circle-gear-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-circle-gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-fill.imageset/user-circle-minus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-circle-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-fill.imageset/user-circle-minus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-circle-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-fill.imageset/user-circle-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-circle-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-fill.imageset/user-circle-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-circle-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-fill.imageset/user-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-fill.imageset/user-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-fill.imageset/user-focus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-focus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-fill.imageset/user-focus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-focus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-fill.imageset/user-gear-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-fill.imageset/user-gear-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-fill.imageset/user-list-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-fill.imageset/user-list-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-fill.imageset/user-minus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-fill.imageset/user-minus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-fill.imageset/user-plus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-fill.imageset/user-plus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-fill.imageset/user-rectangle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-rectangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-fill.imageset/user-rectangle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-rectangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-fill.imageset/user-sound-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-sound.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-fill.imageset/user-sound-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-sound.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-fill.imageset/user-square-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-fill.imageset/user-square-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-fill.imageset/user-switch-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-switch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-fill.imageset/user-switch-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user-switch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-fill.imageset/user-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-fill.imageset/user-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-fill.imageset/users-four-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/users-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-fill.imageset/users-four-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/users-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-fill.imageset/users-three-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/users-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-fill.imageset/users-three-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/users-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-fill.imageset/users-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/users.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-fill.imageset/users-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/users.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-fill.imageset/van-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/van.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-fill.imageset/van-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/van.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-fill.imageset/vault-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/vault.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-fill.imageset/vault-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/vault.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-fill.imageset/vector-three-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/vector-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-fill.imageset/vector-three-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/vector-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-fill.imageset/vector-two-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/vector-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-fill.imageset/vector-two-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/vector-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-fill.imageset/vibrate-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/vibrate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-fill.imageset/vibrate-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/vibrate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-fill.imageset/video-camera-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/video-camera-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-fill.imageset/video-camera-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/video-camera-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-fill.imageset/video-camera-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/video-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-fill.imageset/video-camera-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/video-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-fill.imageset/video-conference-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/video-conference.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-fill.imageset/video-conference-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/video-conference.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-fill.imageset/video-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/video.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-fill.imageset/video-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/video.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-fill.imageset/vignette-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/vignette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-fill.imageset/vignette-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/vignette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-fill.imageset/vinyl-record-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/vinyl-record.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-fill.imageset/vinyl-record-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/vinyl-record.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-fill.imageset/virtual-reality-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/virtual-reality.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-fill.imageset/virtual-reality-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/virtual-reality.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-fill.imageset/virus-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/virus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-fill.imageset/virus-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/virus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-fill.imageset/visor-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/visor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-fill.imageset/visor-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/visor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-fill.imageset/voicemail-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/voicemail.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-fill.imageset/voicemail-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/voicemail.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-fill.imageset/volleyball-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/volleyball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-fill.imageset/volleyball-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/volleyball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-fill.imageset/wall-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wall.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-fill.imageset/wall-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wall.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-fill.imageset/wallet-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wallet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-fill.imageset/wallet-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wallet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-fill.imageset/warehouse-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/warehouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-fill.imageset/warehouse-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/warehouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-fill.imageset/warning-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/warning-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-fill.imageset/warning-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/warning-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-fill.imageset/warning-diamond-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/warning-diamond.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-fill.imageset/warning-diamond-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/warning-diamond.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-fill.imageset/warning-octagon-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/warning-octagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-fill.imageset/warning-octagon-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/warning-octagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-fill.imageset/warning-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-fill.imageset/warning-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-fill.imageset/washing-machine-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/washing-machine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-fill.imageset/washing-machine-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/washing-machine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-fill.imageset/watch-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/watch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-fill.imageset/watch-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/watch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-fill.imageset/wave-sawtooth-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wave-sawtooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-fill.imageset/wave-sawtooth-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wave-sawtooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-fill.imageset/wave-sine-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wave-sine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-fill.imageset/wave-sine-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wave-sine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-fill.imageset/wave-square-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wave-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-fill.imageset/wave-square-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wave-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-fill.imageset/wave-triangle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wave-triangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-fill.imageset/wave-triangle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wave-triangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-fill.imageset/waveform-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/waveform-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-fill.imageset/waveform-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/waveform-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-fill.imageset/waveform-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/waveform.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-fill.imageset/waveform-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/waveform.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-fill.imageset/waves-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/waves.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-fill.imageset/waves-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/waves.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-fill.imageset/webcam-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/webcam-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-fill.imageset/webcam-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/webcam-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-fill.imageset/webcam-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/webcam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-fill.imageset/webcam-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/webcam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-fill.imageset/webhooks-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/webhooks-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-fill.imageset/webhooks-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/webhooks-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-fill.imageset/wechat-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wechat-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-fill.imageset/wechat-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wechat-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-fill.imageset/whatsapp-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/whatsapp-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-fill.imageset/whatsapp-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/whatsapp-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-fill.imageset/wheelchair-motion-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wheelchair-motion.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-fill.imageset/wheelchair-motion-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wheelchair-motion.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-fill.imageset/wheelchair-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wheelchair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-fill.imageset/wheelchair-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wheelchair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-fill.imageset/wifi-high-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wifi-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-fill.imageset/wifi-high-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wifi-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-fill.imageset/wifi-low-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wifi-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-fill.imageset/wifi-low-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wifi-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-fill.imageset/wifi-medium-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wifi-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-fill.imageset/wifi-medium-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wifi-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-fill.imageset/wifi-none-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wifi-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-fill.imageset/wifi-none-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wifi-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-fill.imageset/wifi-slash-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wifi-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-fill.imageset/wifi-slash-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wifi-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-fill.imageset/wifi-x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wifi-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-fill.imageset/wifi-x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wifi-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-fill.imageset/wind-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wind.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-fill.imageset/wind-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wind.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-fill.imageset/windmill-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/windmill.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-fill.imageset/windmill-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/windmill.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-fill.imageset/windows-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/windows-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-fill.imageset/windows-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/windows-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-fill.imageset/wine-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-fill.imageset/wine-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-fill.imageset/wrench-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/wrench.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-fill.imageset/wrench-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/wrench.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-fill.imageset/x-circle-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/x-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-fill.imageset/x-circle-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/x-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-fill.imageset/x-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/x-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-fill.imageset/x-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/x-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-fill.imageset/x-square-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/x-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-fill.imageset/x-square-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/x-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-fill.imageset/x-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-fill.imageset/x-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-fill.imageset/yarn-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/yarn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-fill.imageset/yarn-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/yarn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-fill.imageset/yin-yang-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/yin-yang.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-fill.imageset/yin-yang-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/yin-yang.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-fill.imageset/youtube-logo-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/fill/youtube-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-fill.imageset/youtube-logo-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/fill/youtube-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-light.imageset/acorn-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/acorn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-light.imageset/acorn-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/acorn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-light.imageset/address-book-tabs-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/address-book-tabs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-light.imageset/address-book-tabs-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/address-book-tabs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-light.imageset/address-book-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/address-book.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-light.imageset/address-book-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/address-book.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-light.imageset/air-traffic-control-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/air-traffic-control.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-light.imageset/air-traffic-control-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/air-traffic-control.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-light.imageset/airplane-in-flight-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/airplane-in-flight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-light.imageset/airplane-in-flight-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/airplane-in-flight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-light.imageset/airplane-landing-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/airplane-landing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-light.imageset/airplane-landing-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/airplane-landing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-light.imageset/airplane-takeoff-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/airplane-takeoff.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-light.imageset/airplane-takeoff-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/airplane-takeoff.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-light.imageset/airplane-taxiing-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/airplane-taxiing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-light.imageset/airplane-taxiing-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/airplane-taxiing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-light.imageset/airplane-tilt-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/airplane-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-light.imageset/airplane-tilt-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/airplane-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-light.imageset/airplane-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/airplane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-light.imageset/airplane-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/airplane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-light.imageset/airplay-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/airplay.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-light.imageset/airplay-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/airplay.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-light.imageset/alarm-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/alarm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-light.imageset/alarm-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/alarm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-light.imageset/alien-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/alien.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-light.imageset/alien-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/alien.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-light.imageset/align-bottom-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/align-bottom-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-light.imageset/align-bottom-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/align-bottom-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-light.imageset/align-bottom-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/align-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-light.imageset/align-bottom-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/align-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-light.imageset/align-center-horizontal-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/align-center-horizontal-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-light.imageset/align-center-horizontal-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/align-center-horizontal-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-light.imageset/align-center-horizontal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/align-center-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-light.imageset/align-center-horizontal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/align-center-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-light.imageset/align-center-vertical-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/align-center-vertical-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-light.imageset/align-center-vertical-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/align-center-vertical-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-light.imageset/align-center-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/align-center-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-light.imageset/align-center-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/align-center-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-light.imageset/align-left-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/align-left-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-light.imageset/align-left-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/align-left-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-light.imageset/align-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/align-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-light.imageset/align-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/align-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-light.imageset/align-right-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/align-right-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-light.imageset/align-right-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/align-right-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-light.imageset/align-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/align-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-light.imageset/align-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/align-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-light.imageset/align-top-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/align-top-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-light.imageset/align-top-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/align-top-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-light.imageset/align-top-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/align-top.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-light.imageset/align-top-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/align-top.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-light.imageset/amazon-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/amazon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-light.imageset/amazon-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/amazon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-light.imageset/ambulance-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/ambulance.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-light.imageset/ambulance-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/ambulance.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-light.imageset/anchor-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/anchor-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-light.imageset/anchor-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/anchor-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-light.imageset/anchor-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/anchor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-light.imageset/anchor-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/anchor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-light.imageset/android-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/android-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-light.imageset/android-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/android-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-light.imageset/angle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/angle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-light.imageset/angle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/angle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-light.imageset/angular-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/angular-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-light.imageset/angular-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/angular-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-light.imageset/aperture-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/aperture.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-light.imageset/aperture-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/aperture.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-light.imageset/app-store-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/app-store-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-light.imageset/app-store-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/app-store-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-light.imageset/app-window-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/app-window.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-light.imageset/app-window-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/app-window.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-light.imageset/apple-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/apple-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-light.imageset/apple-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/apple-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-light.imageset/apple-podcasts-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/apple-podcasts-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-light.imageset/apple-podcasts-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/apple-podcasts-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-light.imageset/approximate-equals-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/approximate-equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-light.imageset/approximate-equals-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/approximate-equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-light.imageset/archive-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/archive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-light.imageset/archive-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/archive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-light.imageset/armchair-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/armchair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-light.imageset/armchair-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/armchair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-light.imageset/arrow-arc-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-arc-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-light.imageset/arrow-arc-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-arc-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-light.imageset/arrow-arc-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-arc-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-light.imageset/arrow-arc-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-arc-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-light.imageset/arrow-bend-double-up-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-double-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-light.imageset/arrow-bend-double-up-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-double-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-light.imageset/arrow-bend-double-up-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-double-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-light.imageset/arrow-bend-double-up-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-double-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-light.imageset/arrow-bend-down-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-light.imageset/arrow-bend-down-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-light.imageset/arrow-bend-down-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-light.imageset/arrow-bend-down-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-light.imageset/arrow-bend-left-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-light.imageset/arrow-bend-left-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-light.imageset/arrow-bend-left-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-light.imageset/arrow-bend-left-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-light.imageset/arrow-bend-right-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-light.imageset/arrow-bend-right-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-light.imageset/arrow-bend-right-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-light.imageset/arrow-bend-right-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-light.imageset/arrow-bend-up-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-light.imageset/arrow-bend-up-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-light.imageset/arrow-bend-up-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-light.imageset/arrow-bend-up-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-bend-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-light.imageset/arrow-circle-down-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-light.imageset/arrow-circle-down-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-light.imageset/arrow-circle-down-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-light.imageset/arrow-circle-down-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-light.imageset/arrow-circle-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-light.imageset/arrow-circle-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-light.imageset/arrow-circle-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-light.imageset/arrow-circle-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-light.imageset/arrow-circle-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-light.imageset/arrow-circle-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-light.imageset/arrow-circle-up-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-light.imageset/arrow-circle-up-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-light.imageset/arrow-circle-up-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-light.imageset/arrow-circle-up-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-light.imageset/arrow-circle-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-light.imageset/arrow-circle-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-circle-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-light.imageset/arrow-clockwise-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-light.imageset/arrow-clockwise-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-light.imageset/arrow-counter-clockwise-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-light.imageset/arrow-counter-clockwise-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-light.imageset/arrow-down-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-light.imageset/arrow-down-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-light.imageset/arrow-down-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-light.imageset/arrow-down-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-light.imageset/arrow-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-light.imageset/arrow-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-light.imageset/arrow-elbow-down-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-light.imageset/arrow-elbow-down-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-light.imageset/arrow-elbow-down-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-light.imageset/arrow-elbow-down-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-light.imageset/arrow-elbow-left-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-light.imageset/arrow-elbow-left-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-light.imageset/arrow-elbow-left-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-light.imageset/arrow-elbow-left-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-light.imageset/arrow-elbow-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-light.imageset/arrow-elbow-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-light.imageset/arrow-elbow-right-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-light.imageset/arrow-elbow-right-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-light.imageset/arrow-elbow-right-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-light.imageset/arrow-elbow-right-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-light.imageset/arrow-elbow-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-light.imageset/arrow-elbow-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-light.imageset/arrow-elbow-up-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-light.imageset/arrow-elbow-up-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-light.imageset/arrow-elbow-up-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-light.imageset/arrow-elbow-up-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-elbow-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-light.imageset/arrow-fat-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-light.imageset/arrow-fat-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-light.imageset/arrow-fat-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-light.imageset/arrow-fat-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-light.imageset/arrow-fat-line-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-light.imageset/arrow-fat-line-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-light.imageset/arrow-fat-line-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-light.imageset/arrow-fat-line-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-light.imageset/arrow-fat-line-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-light.imageset/arrow-fat-line-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-light.imageset/arrow-fat-line-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-light.imageset/arrow-fat-line-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-light.imageset/arrow-fat-lines-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-lines-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-light.imageset/arrow-fat-lines-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-lines-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-light.imageset/arrow-fat-lines-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-lines-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-light.imageset/arrow-fat-lines-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-lines-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-light.imageset/arrow-fat-lines-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-lines-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-light.imageset/arrow-fat-lines-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-lines-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-light.imageset/arrow-fat-lines-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-lines-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-light.imageset/arrow-fat-lines-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-lines-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-light.imageset/arrow-fat-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-light.imageset/arrow-fat-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-light.imageset/arrow-fat-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-light.imageset/arrow-fat-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-fat-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-light.imageset/arrow-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-light.imageset/arrow-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-light.imageset/arrow-line-down-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-light.imageset/arrow-line-down-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-light.imageset/arrow-line-down-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-light.imageset/arrow-line-down-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-light.imageset/arrow-line-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-light.imageset/arrow-line-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-light.imageset/arrow-line-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-light.imageset/arrow-line-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-light.imageset/arrow-line-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-light.imageset/arrow-line-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-light.imageset/arrow-line-up-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-light.imageset/arrow-line-up-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-light.imageset/arrow-line-up-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-light.imageset/arrow-line-up-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-light.imageset/arrow-line-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-light.imageset/arrow-line-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-light.imageset/arrow-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-light.imageset/arrow-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-light.imageset/arrow-square-down-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-light.imageset/arrow-square-down-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-light.imageset/arrow-square-down-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-light.imageset/arrow-square-down-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-light.imageset/arrow-square-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-light.imageset/arrow-square-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-light.imageset/arrow-square-in-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-light.imageset/arrow-square-in-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-light.imageset/arrow-square-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-light.imageset/arrow-square-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-light.imageset/arrow-square-out-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-light.imageset/arrow-square-out-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-light.imageset/arrow-square-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-light.imageset/arrow-square-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-light.imageset/arrow-square-up-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-light.imageset/arrow-square-up-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-light.imageset/arrow-square-up-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-light.imageset/arrow-square-up-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-light.imageset/arrow-square-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-light.imageset/arrow-square-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-square-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-light.imageset/arrow-u-down-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-light.imageset/arrow-u-down-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-light.imageset/arrow-u-down-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-light.imageset/arrow-u-down-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-light.imageset/arrow-u-left-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-light.imageset/arrow-u-left-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-light.imageset/arrow-u-left-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-light.imageset/arrow-u-left-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-light.imageset/arrow-u-right-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-light.imageset/arrow-u-right-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-light.imageset/arrow-u-right-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-light.imageset/arrow-u-right-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-light.imageset/arrow-u-up-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-light.imageset/arrow-u-up-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-light.imageset/arrow-u-up-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-light.imageset/arrow-u-up-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-u-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-light.imageset/arrow-up-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-light.imageset/arrow-up-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-light.imageset/arrow-up-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-light.imageset/arrow-up-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-light.imageset/arrow-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-light.imageset/arrow-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-light.imageset/arrows-clockwise-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-light.imageset/arrows-clockwise-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-light.imageset/arrows-counter-clockwise-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-light.imageset/arrows-counter-clockwise-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-light.imageset/arrows-down-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-down-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-light.imageset/arrows-down-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-down-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-light.imageset/arrows-horizontal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-light.imageset/arrows-horizontal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-light.imageset/arrows-in-cardinal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-in-cardinal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-light.imageset/arrows-in-cardinal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-in-cardinal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-light.imageset/arrows-in-line-horizontal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-in-line-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-light.imageset/arrows-in-line-horizontal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-in-line-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-light.imageset/arrows-in-line-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-in-line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-light.imageset/arrows-in-line-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-in-line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-light.imageset/arrows-in-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-in-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-light.imageset/arrows-in-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-in-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-light.imageset/arrows-in-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-light.imageset/arrows-in-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-light.imageset/arrows-left-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-left-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-light.imageset/arrows-left-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-left-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-light.imageset/arrows-merge-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-merge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-light.imageset/arrows-merge-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-merge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-light.imageset/arrows-out-cardinal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-out-cardinal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-light.imageset/arrows-out-cardinal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-out-cardinal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-light.imageset/arrows-out-line-horizontal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-out-line-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-light.imageset/arrows-out-line-horizontal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-out-line-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-light.imageset/arrows-out-line-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-out-line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-light.imageset/arrows-out-line-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-out-line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-light.imageset/arrows-out-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-out-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-light.imageset/arrows-out-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-out-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-light.imageset/arrows-out-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-light.imageset/arrows-out-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-light.imageset/arrows-split-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-split.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-light.imageset/arrows-split-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-split.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-light.imageset/arrows-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-light.imageset/arrows-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/arrows-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-light.imageset/article-medium-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/article-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-light.imageset/article-medium-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/article-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-light.imageset/article-ny-times-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/article-ny-times.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-light.imageset/article-ny-times-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/article-ny-times.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-light.imageset/article-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/article.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-light.imageset/article-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/article.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-light.imageset/asclepius-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/asclepius.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-light.imageset/asclepius-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/asclepius.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-light.imageset/asterisk-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/asterisk-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-light.imageset/asterisk-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/asterisk-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-light.imageset/asterisk-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/asterisk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-light.imageset/asterisk-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/asterisk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-light.imageset/at-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/at.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-light.imageset/at-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/at.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-light.imageset/atom-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/atom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-light.imageset/atom-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/atom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-light.imageset/avocado-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/avocado.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-light.imageset/avocado-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/avocado.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-light.imageset/axe-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/axe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-light.imageset/axe-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/axe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-light.imageset/baby-carriage-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/baby-carriage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-light.imageset/baby-carriage-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/baby-carriage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-light.imageset/baby-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/baby.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-light.imageset/baby-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/baby.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-light.imageset/backpack-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/backpack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-light.imageset/backpack-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/backpack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-light.imageset/backspace-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/backspace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-light.imageset/backspace-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/backspace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-light.imageset/bag-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-light.imageset/bag-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-light.imageset/bag-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-light.imageset/bag-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-light.imageset/balloon-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/balloon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-light.imageset/balloon-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/balloon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-light.imageset/bandaids-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bandaids.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-light.imageset/bandaids-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bandaids.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-light.imageset/bank-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-light.imageset/bank-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-light.imageset/barbell-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/barbell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-light.imageset/barbell-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/barbell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-light.imageset/barcode-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/barcode.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-light.imageset/barcode-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/barcode.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-light.imageset/barn-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/barn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-light.imageset/barn-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/barn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-light.imageset/barricade-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/barricade.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-light.imageset/barricade-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/barricade.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-light.imageset/baseball-cap-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/baseball-cap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-light.imageset/baseball-cap-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/baseball-cap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-light.imageset/baseball-helmet-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/baseball-helmet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-light.imageset/baseball-helmet-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/baseball-helmet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-light.imageset/baseball-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/baseball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-light.imageset/baseball-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/baseball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-light.imageset/basket-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/basket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-light.imageset/basket-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/basket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-light.imageset/basketball-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/basketball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-light.imageset/basketball-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/basketball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-light.imageset/bathtub-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bathtub.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-light.imageset/bathtub-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bathtub.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-light.imageset/battery-charging-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-charging-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-light.imageset/battery-charging-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-charging-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-light.imageset/battery-charging-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-charging.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-light.imageset/battery-charging-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-charging.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-light.imageset/battery-empty-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-light.imageset/battery-empty-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-light.imageset/battery-full-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-light.imageset/battery-full-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-light.imageset/battery-high-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-light.imageset/battery-high-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-light.imageset/battery-low-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-light.imageset/battery-low-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-light.imageset/battery-medium-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-light.imageset/battery-medium-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-light.imageset/battery-plus-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-plus-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-light.imageset/battery-plus-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-plus-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-light.imageset/battery-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-light.imageset/battery-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-light.imageset/battery-vertical-empty-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-vertical-empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-light.imageset/battery-vertical-empty-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-vertical-empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-light.imageset/battery-vertical-full-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-vertical-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-light.imageset/battery-vertical-full-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-vertical-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-light.imageset/battery-vertical-high-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-vertical-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-light.imageset/battery-vertical-high-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-vertical-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-light.imageset/battery-vertical-low-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-vertical-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-light.imageset/battery-vertical-low-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-vertical-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-light.imageset/battery-vertical-medium-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-vertical-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-light.imageset/battery-vertical-medium-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-vertical-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-light.imageset/battery-warning-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-warning-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-light.imageset/battery-warning-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-warning-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-light.imageset/battery-warning-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-light.imageset/battery-warning-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/battery-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-light.imageset/beach-ball-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/beach-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-light.imageset/beach-ball-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/beach-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-light.imageset/beanie-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/beanie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-light.imageset/beanie-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/beanie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-light.imageset/bed-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-light.imageset/bed-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-light.imageset/beer-bottle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/beer-bottle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-light.imageset/beer-bottle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/beer-bottle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-light.imageset/beer-stein-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/beer-stein.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-light.imageset/beer-stein-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/beer-stein.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-light.imageset/behance-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/behance-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-light.imageset/behance-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/behance-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-light.imageset/bell-ringing-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bell-ringing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-light.imageset/bell-ringing-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bell-ringing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-light.imageset/bell-simple-ringing-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bell-simple-ringing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-light.imageset/bell-simple-ringing-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bell-simple-ringing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-light.imageset/bell-simple-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bell-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-light.imageset/bell-simple-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bell-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-light.imageset/bell-simple-z-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bell-simple-z.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-light.imageset/bell-simple-z-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bell-simple-z.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-light.imageset/bell-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bell-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-light.imageset/bell-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bell-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-light.imageset/bell-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bell-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-light.imageset/bell-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bell-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-light.imageset/bell-z-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bell-z.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-light.imageset/bell-z-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bell-z.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-light.imageset/bell-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-light.imageset/bell-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-light.imageset/belt-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/belt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-light.imageset/belt-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/belt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-light.imageset/bezier-curve-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bezier-curve.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-light.imageset/bezier-curve-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bezier-curve.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-light.imageset/bicycle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bicycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-light.imageset/bicycle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bicycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-light.imageset/binary-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/binary.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-light.imageset/binary-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/binary.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-light.imageset/binoculars-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/binoculars.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-light.imageset/binoculars-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/binoculars.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-light.imageset/biohazard-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/biohazard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-light.imageset/biohazard-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/biohazard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-light.imageset/bird-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bird.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-light.imageset/bird-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bird.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-light.imageset/blueprint-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/blueprint.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-light.imageset/blueprint-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/blueprint.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-light.imageset/bluetooth-connected-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bluetooth-connected.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-light.imageset/bluetooth-connected-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bluetooth-connected.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-light.imageset/bluetooth-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bluetooth-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-light.imageset/bluetooth-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bluetooth-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-light.imageset/bluetooth-x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bluetooth-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-light.imageset/bluetooth-x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bluetooth-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-light.imageset/bluetooth-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bluetooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-light.imageset/bluetooth-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bluetooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-light.imageset/boat-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/boat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-light.imageset/boat-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/boat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-light.imageset/bomb-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bomb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-light.imageset/bomb-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bomb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-light.imageset/bone-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-light.imageset/bone-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-light.imageset/book-bookmark-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/book-bookmark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-light.imageset/book-bookmark-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/book-bookmark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-light.imageset/book-open-text-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/book-open-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-light.imageset/book-open-text-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/book-open-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-light.imageset/book-open-user-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/book-open-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-light.imageset/book-open-user-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/book-open-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-light.imageset/book-open-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/book-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-light.imageset/book-open-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/book-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-light.imageset/book-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/book.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-light.imageset/book-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/book.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-light.imageset/bookmark-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bookmark-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-light.imageset/bookmark-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bookmark-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-light.imageset/bookmark-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bookmark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-light.imageset/bookmark-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bookmark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-light.imageset/bookmarks-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bookmarks-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-light.imageset/bookmarks-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bookmarks-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-light.imageset/bookmarks-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bookmarks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-light.imageset/bookmarks-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bookmarks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-light.imageset/books-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/books.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-light.imageset/books-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/books.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-light.imageset/boot-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/boot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-light.imageset/boot-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/boot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-light.imageset/boules-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/boules.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-light.imageset/boules-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/boules.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-light.imageset/bounding-box-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bounding-box.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-light.imageset/bounding-box-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bounding-box.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-light.imageset/bowl-food-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bowl-food.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-light.imageset/bowl-food-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bowl-food.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-light.imageset/bowl-steam-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bowl-steam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-light.imageset/bowl-steam-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bowl-steam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-light.imageset/bowling-ball-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bowling-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-light.imageset/bowling-ball-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bowling-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-light.imageset/archive-box-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/box-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-light.imageset/archive-box-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/box-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-light.imageset/box-arrow-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/box-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-light.imageset/box-arrow-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/box-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-light.imageset/boxing-glove-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/boxing-glove.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-light.imageset/boxing-glove-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/boxing-glove.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-light.imageset/brackets-angle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/brackets-angle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-light.imageset/brackets-angle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/brackets-angle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-light.imageset/brackets-curly-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/brackets-curly.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-light.imageset/brackets-curly-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/brackets-curly.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-light.imageset/brackets-round-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/brackets-round.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-light.imageset/brackets-round-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/brackets-round.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-light.imageset/brackets-square-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/brackets-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-light.imageset/brackets-square-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/brackets-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-light.imageset/brain-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/brain.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-light.imageset/brain-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/brain.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-light.imageset/brandy-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/brandy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-light.imageset/brandy-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/brandy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-light.imageset/bread-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bread.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-light.imageset/bread-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bread.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-light.imageset/bridge-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bridge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-light.imageset/bridge-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bridge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-light.imageset/briefcase-metal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/briefcase-metal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-light.imageset/briefcase-metal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/briefcase-metal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-light.imageset/briefcase-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/briefcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-light.imageset/briefcase-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/briefcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-light.imageset/broadcast-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/broadcast.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-light.imageset/broadcast-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/broadcast.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-light.imageset/broom-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/broom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-light.imageset/broom-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/broom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-light.imageset/browser-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/browser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-light.imageset/browser-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/browser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-light.imageset/browsers-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/browsers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-light.imageset/browsers-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/browsers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-light.imageset/bug-beetle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bug-beetle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-light.imageset/bug-beetle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bug-beetle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-light.imageset/bug-droid-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bug-droid.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-light.imageset/bug-droid-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bug-droid.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-light.imageset/bug-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-light.imageset/bug-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-light.imageset/building-apartment-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/building-apartment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-light.imageset/building-apartment-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/building-apartment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-light.imageset/building-office-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/building-office.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-light.imageset/building-office-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/building-office.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-light.imageset/building-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/building.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-light.imageset/building-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/building.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-light.imageset/buildings-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/buildings.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-light.imageset/buildings-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/buildings.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-light.imageset/bulldozer-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bulldozer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-light.imageset/bulldozer-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bulldozer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-light.imageset/bus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/bus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-light.imageset/bus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/bus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-light.imageset/butterfly-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/butterfly.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-light.imageset/butterfly-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/butterfly.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-light.imageset/cable-car-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cable-car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-light.imageset/cable-car-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cable-car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-light.imageset/cactus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cactus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-light.imageset/cactus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cactus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-light.imageset/cake-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-light.imageset/cake-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-light.imageset/calculator-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/calculator.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-light.imageset/calculator-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/calculator.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-light.imageset/calendar-blank-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-light.imageset/calendar-blank-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-light.imageset/calendar-check-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-light.imageset/calendar-check-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-light.imageset/calendar-dot-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-dot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-light.imageset/calendar-dot-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-dot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-light.imageset/calendar-dots-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-light.imageset/calendar-dots-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-light.imageset/calendar-heart-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-light.imageset/calendar-heart-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-light.imageset/calendar-minus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-light.imageset/calendar-minus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-light.imageset/calendar-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-light.imageset/calendar-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-light.imageset/calendar-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-light.imageset/calendar-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-light.imageset/calendar-star-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-light.imageset/calendar-star-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-light.imageset/calendar-x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-light.imageset/calendar-x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-light.imageset/calendar-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-light.imageset/calendar-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/calendar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-light.imageset/call-bell-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/call-bell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-light.imageset/call-bell-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/call-bell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-light.imageset/camera-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/camera-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-light.imageset/camera-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/camera-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-light.imageset/camera-rotate-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/camera-rotate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-light.imageset/camera-rotate-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/camera-rotate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-light.imageset/camera-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/camera-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-light.imageset/camera-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/camera-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-light.imageset/camera-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-light.imageset/camera-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-light.imageset/campfire-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/campfire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-light.imageset/campfire-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/campfire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-light.imageset/car-battery-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/car-battery.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-light.imageset/car-battery-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/car-battery.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-light.imageset/car-profile-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/car-profile.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-light.imageset/car-profile-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/car-profile.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-light.imageset/car-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/car-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-light.imageset/car-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/car-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-light.imageset/car-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-light.imageset/car-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-light.imageset/cardholder-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cardholder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-light.imageset/cardholder-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cardholder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-light.imageset/cards-three-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cards-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-light.imageset/cards-three-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cards-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-light.imageset/cards-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cards.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-light.imageset/cards-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cards.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-light.imageset/caret-circle-double-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-double-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-light.imageset/caret-circle-double-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-double-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-light.imageset/caret-circle-double-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-double-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-light.imageset/caret-circle-double-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-double-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-light.imageset/caret-circle-double-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-double-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-light.imageset/caret-circle-double-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-double-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-light.imageset/caret-circle-double-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-double-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-light.imageset/caret-circle-double-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-double-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-light.imageset/caret-circle-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-light.imageset/caret-circle-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-light.imageset/caret-circle-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-light.imageset/caret-circle-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-light.imageset/caret-circle-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-light.imageset/caret-circle-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-light.imageset/caret-circle-up-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-up-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-light.imageset/caret-circle-up-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-up-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-light.imageset/caret-circle-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-light.imageset/caret-circle-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-circle-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-light.imageset/caret-double-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-double-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-light.imageset/caret-double-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-double-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-light.imageset/caret-double-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-double-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-light.imageset/caret-double-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-double-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-light.imageset/caret-double-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-double-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-light.imageset/caret-double-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-double-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-light.imageset/caret-double-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-double-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-light.imageset/caret-double-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-double-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-light.imageset/caret-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-light.imageset/caret-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-light.imageset/caret-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-light.imageset/caret-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-light.imageset/caret-line-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-light.imageset/caret-line-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-light.imageset/caret-line-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-light.imageset/caret-line-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-light.imageset/caret-line-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-light.imageset/caret-line-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-light.imageset/caret-line-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-light.imageset/caret-line-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-light.imageset/caret-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-light.imageset/caret-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-light.imageset/caret-up-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-up-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-light.imageset/caret-up-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-up-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-light.imageset/caret-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-light.imageset/caret-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/caret-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-light.imageset/carrot-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/carrot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-light.imageset/carrot-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/carrot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-light.imageset/cash-register-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cash-register.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-light.imageset/cash-register-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cash-register.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-light.imageset/cassette-tape-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cassette-tape.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-light.imageset/cassette-tape-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cassette-tape.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-light.imageset/castle-turret-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/castle-turret.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-light.imageset/castle-turret-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/castle-turret.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-light.imageset/cat-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-light.imageset/cat-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-light.imageset/cell-signal-full-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-signal-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-light.imageset/cell-signal-full-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-signal-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-light.imageset/cell-signal-high-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-signal-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-light.imageset/cell-signal-high-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-signal-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-light.imageset/cell-signal-low-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-signal-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-light.imageset/cell-signal-low-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-signal-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-light.imageset/cell-signal-medium-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-signal-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-light.imageset/cell-signal-medium-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-signal-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-light.imageset/cell-signal-none-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-signal-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-light.imageset/cell-signal-none-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-signal-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-light.imageset/cell-signal-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-signal-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-light.imageset/cell-signal-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-signal-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-light.imageset/cell-signal-x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-signal-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-light.imageset/cell-signal-x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-signal-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-light.imageset/cell-tower-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-light.imageset/cell-tower-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cell-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-light.imageset/certificate-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/certificate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-light.imageset/certificate-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/certificate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-light.imageset/chair-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-light.imageset/chair-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-light.imageset/chalkboard-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chalkboard-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-light.imageset/chalkboard-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chalkboard-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-light.imageset/chalkboard-teacher-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chalkboard-teacher.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-light.imageset/chalkboard-teacher-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chalkboard-teacher.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-light.imageset/chalkboard-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chalkboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-light.imageset/chalkboard-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chalkboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-light.imageset/champagne-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/champagne.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-light.imageset/champagne-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/champagne.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-light.imageset/charging-station-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/charging-station.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-light.imageset/charging-station-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/charging-station.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-light.imageset/chart-bar-horizontal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-bar-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-light.imageset/chart-bar-horizontal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-bar-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-light.imageset/chart-bar-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-bar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-light.imageset/chart-bar-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-bar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-light.imageset/chart-donut-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-donut.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-light.imageset/chart-donut-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-donut.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-light.imageset/chart-line-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-light.imageset/chart-line-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-light.imageset/chart-line-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-light.imageset/chart-line-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-light.imageset/chart-line-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-light.imageset/chart-line-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-light.imageset/chart-pie-slice-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-pie-slice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-light.imageset/chart-pie-slice-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-pie-slice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-light.imageset/chart-pie-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-pie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-light.imageset/chart-pie-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-pie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-light.imageset/chart-polar-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-polar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-light.imageset/chart-polar-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-polar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-light.imageset/chart-scatter-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-scatter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-light.imageset/chart-scatter-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chart-scatter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-light.imageset/chat-centered-dots-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-centered-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-light.imageset/chat-centered-dots-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-centered-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-light.imageset/chat-centered-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-centered-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-light.imageset/chat-centered-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-centered-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-light.imageset/chat-centered-text-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-centered-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-light.imageset/chat-centered-text-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-centered-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-light.imageset/chat-centered-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-centered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-light.imageset/chat-centered-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-centered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-light.imageset/chat-circle-dots-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-circle-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-light.imageset/chat-circle-dots-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-circle-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-light.imageset/chat-circle-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-circle-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-light.imageset/chat-circle-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-circle-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-light.imageset/chat-circle-text-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-circle-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-light.imageset/chat-circle-text-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-circle-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-light.imageset/chat-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-light.imageset/chat-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-light.imageset/chat-dots-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-light.imageset/chat-dots-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-light.imageset/chat-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-light.imageset/chat-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-light.imageset/chat-teardrop-dots-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-teardrop-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-light.imageset/chat-teardrop-dots-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-teardrop-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-light.imageset/chat-teardrop-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-teardrop-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-light.imageset/chat-teardrop-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-teardrop-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-light.imageset/chat-teardrop-text-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-teardrop-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-light.imageset/chat-teardrop-text-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-teardrop-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-light.imageset/chat-teardrop-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-teardrop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-light.imageset/chat-teardrop-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-teardrop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-light.imageset/chat-text-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-light.imageset/chat-text-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-light.imageset/chat-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-light.imageset/chat-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-light.imageset/chats-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chats-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-light.imageset/chats-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chats-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-light.imageset/chats-teardrop-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chats-teardrop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-light.imageset/chats-teardrop-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chats-teardrop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-light.imageset/chats-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chats.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-light.imageset/chats-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chats.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-light.imageset/check-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/check-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-light.imageset/check-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/check-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-light.imageset/check-fat-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/check-fat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-light.imageset/check-fat-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/check-fat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-light.imageset/check-square-offset-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/check-square-offset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-light.imageset/check-square-offset-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/check-square-offset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-light.imageset/check-square-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/check-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-light.imageset/check-square-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/check-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-light.imageset/check-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-light.imageset/check-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-light.imageset/checkerboard-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/checkerboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-light.imageset/checkerboard-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/checkerboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-light.imageset/checks-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/checks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-light.imageset/checks-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/checks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-light.imageset/cheers-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cheers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-light.imageset/cheers-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cheers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-light.imageset/cheese-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cheese.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-light.imageset/cheese-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cheese.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-light.imageset/chef-hat-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/chef-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-light.imageset/chef-hat-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/chef-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-light.imageset/cherries-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cherries.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-light.imageset/cherries-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cherries.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-light.imageset/church-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/church.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-light.imageset/church-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/church.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-light.imageset/cigarette-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cigarette-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-light.imageset/cigarette-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cigarette-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-light.imageset/cigarette-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cigarette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-light.imageset/cigarette-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cigarette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-light.imageset/circle-dashed-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/circle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-light.imageset/circle-dashed-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/circle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-light.imageset/circle-half-tilt-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/circle-half-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-light.imageset/circle-half-tilt-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/circle-half-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-light.imageset/circle-half-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/circle-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-light.imageset/circle-half-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/circle-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-light.imageset/circle-notch-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/circle-notch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-light.imageset/circle-notch-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/circle-notch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-light.imageset/circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-light.imageset/circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-light.imageset/circles-four-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/circles-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-light.imageset/circles-four-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/circles-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-light.imageset/circles-three-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/circles-three-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-light.imageset/circles-three-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/circles-three-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-light.imageset/circles-three-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/circles-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-light.imageset/circles-three-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/circles-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-light.imageset/circuitry-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/circuitry.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-light.imageset/circuitry-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/circuitry.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-light.imageset/city-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/city.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-light.imageset/city-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/city.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-light.imageset/clipboard-text-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/clipboard-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-light.imageset/clipboard-text-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/clipboard-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-light.imageset/clipboard-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/clipboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-light.imageset/clipboard-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/clipboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-light.imageset/clock-afternoon-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/clock-afternoon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-light.imageset/clock-afternoon-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/clock-afternoon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-light.imageset/clock-clockwise-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/clock-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-light.imageset/clock-clockwise-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/clock-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-light.imageset/clock-countdown-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/clock-countdown.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-light.imageset/clock-countdown-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/clock-countdown.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-light.imageset/clock-counter-clockwise-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/clock-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-light.imageset/clock-counter-clockwise-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/clock-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-light.imageset/clock-user-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/clock-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-light.imageset/clock-user-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/clock-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-light.imageset/clock-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/clock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-light.imageset/clock-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/clock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-light.imageset/closed-captioning-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/closed-captioning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-light.imageset/closed-captioning-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/closed-captioning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-light.imageset/cloud-arrow-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-light.imageset/cloud-arrow-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-light.imageset/cloud-arrow-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-light.imageset/cloud-arrow-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-light.imageset/cloud-check-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-light.imageset/cloud-check-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-light.imageset/cloud-fog-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-fog.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-light.imageset/cloud-fog-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-fog.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-light.imageset/cloud-lightning-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-lightning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-light.imageset/cloud-lightning-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-lightning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-light.imageset/cloud-moon-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-moon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-light.imageset/cloud-moon-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-moon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-light.imageset/cloud-rain-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-rain.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-light.imageset/cloud-rain-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-rain.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-light.imageset/cloud-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-light.imageset/cloud-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-light.imageset/cloud-snow-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-snow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-light.imageset/cloud-snow-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-snow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-light.imageset/cloud-sun-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-sun.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-light.imageset/cloud-sun-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-sun.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-light.imageset/cloud-warning-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-light.imageset/cloud-warning-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-light.imageset/cloud-x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-light.imageset/cloud-x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-light.imageset/cloud-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-light.imageset/cloud-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-light.imageset/clover-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/clover.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-light.imageset/clover-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/clover.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-light.imageset/club-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/club.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-light.imageset/club-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/club.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-light.imageset/coat-hanger-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/coat-hanger.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-light.imageset/coat-hanger-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/coat-hanger.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-light.imageset/coda-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/coda-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-light.imageset/coda-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/coda-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-light.imageset/code-block-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/code-block.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-light.imageset/code-block-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/code-block.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-light.imageset/code-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/code-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-light.imageset/code-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/code-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-light.imageset/code-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-light.imageset/code-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-light.imageset/codepen-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/codepen-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-light.imageset/codepen-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/codepen-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-light.imageset/codesandbox-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/codesandbox-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-light.imageset/codesandbox-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/codesandbox-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-light.imageset/coffee-bean-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/coffee-bean.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-light.imageset/coffee-bean-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/coffee-bean.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-light.imageset/coffee-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/coffee.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-light.imageset/coffee-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/coffee.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-light.imageset/coin-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/coin-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-light.imageset/coin-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/coin-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-light.imageset/coin-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/coin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-light.imageset/coin-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/coin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-light.imageset/coins-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/coins.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-light.imageset/coins-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/coins.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-light.imageset/columns-plus-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/columns-plus-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-light.imageset/columns-plus-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/columns-plus-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-light.imageset/columns-plus-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/columns-plus-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-light.imageset/columns-plus-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/columns-plus-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-light.imageset/columns-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/columns.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-light.imageset/columns-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/columns.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-light.imageset/command-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/command.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-light.imageset/command-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/command.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-light.imageset/compass-rose-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/compass-rose.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-light.imageset/compass-rose-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/compass-rose.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-light.imageset/compass-tool-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/compass-tool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-light.imageset/compass-tool-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/compass-tool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-light.imageset/compass-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/compass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-light.imageset/compass-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/compass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-light.imageset/computer-tower-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/computer-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-light.imageset/computer-tower-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/computer-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-light.imageset/confetti-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/confetti.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-light.imageset/confetti-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/confetti.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-light.imageset/contactless-payment-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/contactless-payment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-light.imageset/contactless-payment-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/contactless-payment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-light.imageset/control-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/control.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-light.imageset/control-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/control.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-light.imageset/cookie-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cookie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-light.imageset/cookie-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cookie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-light.imageset/cooking-pot-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cooking-pot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-light.imageset/cooking-pot-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cooking-pot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-light.imageset/copy-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/copy-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-light.imageset/copy-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/copy-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-light.imageset/copy-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/copy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-light.imageset/copy-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/copy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-light.imageset/copyleft-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/copyleft.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-light.imageset/copyleft-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/copyleft.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-light.imageset/copyright-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/copyright.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-light.imageset/copyright-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/copyright.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-light.imageset/corners-in-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/corners-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-light.imageset/corners-in-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/corners-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-light.imageset/corners-out-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/corners-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-light.imageset/corners-out-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/corners-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-light.imageset/couch-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/couch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-light.imageset/couch-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/couch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-light.imageset/court-basketball-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/court-basketball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-light.imageset/court-basketball-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/court-basketball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-light.imageset/cow-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-light.imageset/cow-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-light.imageset/cowboy-hat-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cowboy-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-light.imageset/cowboy-hat-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cowboy-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-light.imageset/cpu-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cpu.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-light.imageset/cpu-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cpu.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-light.imageset/crane-tower-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/crane-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-light.imageset/crane-tower-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/crane-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-light.imageset/crane-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/crane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-light.imageset/crane-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/crane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-light.imageset/credit-card-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/credit-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-light.imageset/credit-card-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/credit-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-light.imageset/cricket-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cricket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-light.imageset/cricket-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cricket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-light.imageset/crop-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/crop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-light.imageset/crop-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/crop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-light.imageset/cross-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cross.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-light.imageset/cross-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cross.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-light.imageset/crosshair-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/crosshair-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-light.imageset/crosshair-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/crosshair-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-light.imageset/crosshair-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/crosshair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-light.imageset/crosshair-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/crosshair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-light.imageset/crown-cross-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/crown-cross.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-light.imageset/crown-cross-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/crown-cross.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-light.imageset/crown-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/crown-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-light.imageset/crown-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/crown-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-light.imageset/crown-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/crown.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-light.imageset/crown-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/crown.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-light.imageset/cube-focus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cube-focus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-light.imageset/cube-focus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cube-focus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-light.imageset/cube-transparent-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cube-transparent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-light.imageset/cube-transparent-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cube-transparent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-light.imageset/cube-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cube.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-light.imageset/cube-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cube.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-light.imageset/currency-btc-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-btc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-light.imageset/currency-btc-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-btc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-light.imageset/currency-circle-dollar-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-circle-dollar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-light.imageset/currency-circle-dollar-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-circle-dollar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-light.imageset/currency-cny-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-cny.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-light.imageset/currency-cny-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-cny.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-light.imageset/currency-dollar-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-dollar-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-light.imageset/currency-dollar-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-dollar-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-light.imageset/currency-dollar-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-dollar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-light.imageset/currency-dollar-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-dollar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-light.imageset/currency-eth-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-eth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-light.imageset/currency-eth-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-eth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-light.imageset/currency-eur-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-eur.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-light.imageset/currency-eur-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-eur.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-light.imageset/currency-gbp-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-gbp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-light.imageset/currency-gbp-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-gbp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-light.imageset/currency-inr-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-inr.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-light.imageset/currency-inr-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-inr.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-light.imageset/currency-jpy-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-jpy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-light.imageset/currency-jpy-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-jpy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-light.imageset/currency-krw-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-krw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-light.imageset/currency-krw-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-krw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-light.imageset/currency-kzt-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-kzt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-light.imageset/currency-kzt-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-kzt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-light.imageset/currency-ngn-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-ngn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-light.imageset/currency-ngn-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-ngn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-light.imageset/currency-rub-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-rub.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-light.imageset/currency-rub-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/currency-rub.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-light.imageset/cursor-click-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cursor-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-light.imageset/cursor-click-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cursor-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-light.imageset/cursor-text-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cursor-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-light.imageset/cursor-text-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cursor-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-light.imageset/cursor-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cursor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-light.imageset/cursor-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cursor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-light.imageset/cylinder-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/cylinder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-light.imageset/cylinder-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/cylinder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-light.imageset/database-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/database.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-light.imageset/database-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/database.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-light.imageset/desk-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/desk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-light.imageset/desk-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/desk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-light.imageset/desktop-tower-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/desktop-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-light.imageset/desktop-tower-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/desktop-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-light.imageset/desktop-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/desktop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-light.imageset/desktop-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/desktop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-light.imageset/detective-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/detective.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-light.imageset/detective-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/detective.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-light.imageset/dev-to-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dev-to-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-light.imageset/dev-to-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dev-to-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-light.imageset/device-mobile-camera-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/device-mobile-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-light.imageset/device-mobile-camera-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/device-mobile-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-light.imageset/device-mobile-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/device-mobile-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-light.imageset/device-mobile-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/device-mobile-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-light.imageset/device-mobile-speaker-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/device-mobile-speaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-light.imageset/device-mobile-speaker-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/device-mobile-speaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-light.imageset/device-mobile-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/device-mobile.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-light.imageset/device-mobile-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/device-mobile.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-light.imageset/device-rotate-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/device-rotate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-light.imageset/device-rotate-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/device-rotate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-light.imageset/device-tablet-camera-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/device-tablet-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-light.imageset/device-tablet-camera-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/device-tablet-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-light.imageset/device-tablet-speaker-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/device-tablet-speaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-light.imageset/device-tablet-speaker-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/device-tablet-speaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-light.imageset/device-tablet-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/device-tablet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-light.imageset/device-tablet-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/device-tablet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-light.imageset/devices-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/devices.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-light.imageset/devices-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/devices.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-light.imageset/diamond-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/diamond.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-light.imageset/diamond-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/diamond.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-light.imageset/diamonds-four-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/diamonds-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-light.imageset/diamonds-four-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/diamonds-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-light.imageset/dice-five-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dice-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-light.imageset/dice-five-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dice-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-light.imageset/dice-four-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dice-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-light.imageset/dice-four-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dice-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-light.imageset/dice-one-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dice-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-light.imageset/dice-one-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dice-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-light.imageset/dice-six-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dice-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-light.imageset/dice-six-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dice-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-light.imageset/dice-three-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dice-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-light.imageset/dice-three-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dice-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-light.imageset/dice-two-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dice-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-light.imageset/dice-two-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dice-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-light.imageset/disc-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/disc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-light.imageset/disc-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/disc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-light.imageset/disco-ball-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/disco-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-light.imageset/disco-ball-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/disco-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-light.imageset/discord-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/discord-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-light.imageset/discord-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/discord-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-light.imageset/divide-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/divide.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-light.imageset/divide-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/divide.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-light.imageset/dna-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dna.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-light.imageset/dna-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dna.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-light.imageset/dog-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dog.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-light.imageset/dog-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dog.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-light.imageset/door-open-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/door-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-light.imageset/door-open-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/door-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-light.imageset/door-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/door.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-light.imageset/door-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/door.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-light.imageset/dot-outline-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dot-outline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-light.imageset/dot-outline-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dot-outline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-light.imageset/dot-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-light.imageset/dot-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-light.imageset/dots-nine-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-light.imageset/dots-nine-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-light.imageset/dots-six-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-six-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-light.imageset/dots-six-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-six-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-light.imageset/dots-six-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-light.imageset/dots-six-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-light.imageset/dots-three-circle-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-three-circle-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-light.imageset/dots-three-circle-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-three-circle-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-light.imageset/dots-three-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-three-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-light.imageset/dots-three-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-three-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-light.imageset/dots-three-outline-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-three-outline-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-light.imageset/dots-three-outline-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-three-outline-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-light.imageset/dots-three-outline-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-three-outline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-light.imageset/dots-three-outline-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-three-outline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-light.imageset/dots-three-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-three-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-light.imageset/dots-three-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-three-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-light.imageset/dots-three-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-light.imageset/dots-three-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dots-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-light.imageset/download-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/download-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-light.imageset/download-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/download-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-light.imageset/download-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/download.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-light.imageset/download-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/download.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-light.imageset/dress-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dress.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-light.imageset/dress-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dress.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-light.imageset/dresser-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dresser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-light.imageset/dresser-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dresser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-light.imageset/dribbble-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dribbble-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-light.imageset/dribbble-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dribbble-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-light.imageset/drone-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/drone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-light.imageset/drone-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/drone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-light.imageset/drop-half-bottom-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/drop-half-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-light.imageset/drop-half-bottom-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/drop-half-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-light.imageset/drop-half-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/drop-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-light.imageset/drop-half-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/drop-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-light.imageset/drop-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/drop-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-light.imageset/drop-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/drop-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-light.imageset/drop-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/drop-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-light.imageset/drop-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/drop-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-light.imageset/drop-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/drop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-light.imageset/drop-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/drop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-light.imageset/dropbox-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/dropbox-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-light.imageset/dropbox-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/dropbox-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-light.imageset/ear-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/ear-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-light.imageset/ear-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/ear-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-light.imageset/ear-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/ear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-light.imageset/ear-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/ear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-light.imageset/egg-crack-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/egg-crack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-light.imageset/egg-crack-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/egg-crack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-light.imageset/egg-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/egg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-light.imageset/egg-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/egg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-light.imageset/eject-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/eject-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-light.imageset/eject-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/eject-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-light.imageset/eject-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/eject.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-light.imageset/eject-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/eject.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-light.imageset/elevator-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/elevator.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-light.imageset/elevator-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/elevator.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-light.imageset/empty-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-light.imageset/empty-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-light.imageset/engine-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/engine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-light.imageset/engine-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/engine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-light.imageset/envelope-open-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/envelope-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-light.imageset/envelope-open-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/envelope-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-light.imageset/envelope-simple-open-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/envelope-simple-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-light.imageset/envelope-simple-open-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/envelope-simple-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-light.imageset/envelope-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/envelope-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-light.imageset/envelope-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/envelope-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-light.imageset/envelope-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/envelope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-light.imageset/envelope-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/envelope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-light.imageset/equalizer-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/equalizer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-light.imageset/equalizer-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/equalizer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-light.imageset/equals-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-light.imageset/equals-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-light.imageset/eraser-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/eraser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-light.imageset/eraser-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/eraser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-light.imageset/escalator-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/escalator-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-light.imageset/escalator-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/escalator-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-light.imageset/escalator-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/escalator-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-light.imageset/escalator-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/escalator-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-light.imageset/exam-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/exam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-light.imageset/exam-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/exam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-light.imageset/exclamation-mark-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/exclamation-mark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-light.imageset/exclamation-mark-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/exclamation-mark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-light.imageset/exclude-square-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/exclude-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-light.imageset/exclude-square-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/exclude-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-light.imageset/exclude-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/exclude.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-light.imageset/exclude-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/exclude.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-light.imageset/export-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/export.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-light.imageset/export-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/export.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-light.imageset/eye-closed-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/eye-closed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-light.imageset/eye-closed-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/eye-closed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-light.imageset/eye-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/eye-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-light.imageset/eye-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/eye-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-light.imageset/eye-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/eye.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-light.imageset/eye-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/eye.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-light.imageset/eyedropper-sample-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/eyedropper-sample.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-light.imageset/eyedropper-sample-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/eyedropper-sample.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-light.imageset/eyedropper-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/eyedropper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-light.imageset/eyedropper-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/eyedropper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-light.imageset/eyeglasses-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/eyeglasses.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-light.imageset/eyeglasses-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/eyeglasses.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-light.imageset/eyes-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/eyes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-light.imageset/eyes-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/eyes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-light.imageset/face-mask-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/face-mask.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-light.imageset/face-mask-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/face-mask.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-light.imageset/facebook-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/facebook-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-light.imageset/facebook-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/facebook-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-light.imageset/factory-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/factory.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-light.imageset/factory-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/factory.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-light.imageset/faders-horizontal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/faders-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-light.imageset/faders-horizontal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/faders-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-light.imageset/faders-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/faders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-light.imageset/faders-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/faders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-light.imageset/fallout-shelter-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/fallout-shelter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-light.imageset/fallout-shelter-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/fallout-shelter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-light.imageset/fan-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/fan.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-light.imageset/fan-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/fan.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-light.imageset/farm-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/farm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-light.imageset/farm-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/farm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-light.imageset/fast-forward-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/fast-forward-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-light.imageset/fast-forward-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/fast-forward-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-light.imageset/fast-forward-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/fast-forward.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-light.imageset/fast-forward-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/fast-forward.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-light.imageset/feather-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/feather.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-light.imageset/feather-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/feather.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-light.imageset/fediverse-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/fediverse-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-light.imageset/fediverse-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/fediverse-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-light.imageset/figma-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/figma-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-light.imageset/figma-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/figma-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-light.imageset/file-archive-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-archive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-light.imageset/file-archive-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-archive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-light.imageset/file-arrow-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-light.imageset/file-arrow-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-light.imageset/file-arrow-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-light.imageset/file-arrow-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-light.imageset/file-audio-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-audio.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-light.imageset/file-audio-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-audio.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-light.imageset/file-c-sharp-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-c-sharp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-light.imageset/file-c-sharp-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-c-sharp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-light.imageset/file-c-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-c.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-light.imageset/file-c-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-c.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-light.imageset/file-cloud-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-light.imageset/file-cloud-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-light.imageset/file-code-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-light.imageset/file-code-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-light.imageset/file-cpp-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-cpp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-light.imageset/file-cpp-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-cpp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-light.imageset/file-css-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-css.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-light.imageset/file-css-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-css.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-light.imageset/file-csv-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-csv.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-light.imageset/file-csv-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-csv.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-light.imageset/file-dashed-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-light.imageset/file-dashed-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-light.imageset/file-doc-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-doc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-light.imageset/file-doc-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-doc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-light.imageset/file-html-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-html.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-light.imageset/file-html-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-html.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-light.imageset/file-image-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-image.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-light.imageset/file-image-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-image.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-light.imageset/file-ini-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-ini.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-light.imageset/file-ini-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-ini.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-light.imageset/file-jpg-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-jpg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-light.imageset/file-jpg-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-jpg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-light.imageset/file-js-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-js.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-light.imageset/file-js-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-js.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-light.imageset/file-jsx-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-jsx.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-light.imageset/file-jsx-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-jsx.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-light.imageset/file-lock-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-light.imageset/file-lock-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-light.imageset/file-magnifying-glass-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-light.imageset/file-magnifying-glass-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-light.imageset/file-md-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-md.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-light.imageset/file-md-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-md.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-light.imageset/file-minus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-light.imageset/file-minus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-light.imageset/file-pdf-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-pdf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-light.imageset/file-pdf-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-pdf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-light.imageset/file-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-light.imageset/file-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-light.imageset/file-png-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-png.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-light.imageset/file-png-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-png.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-light.imageset/file-ppt-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-ppt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-light.imageset/file-ppt-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-ppt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-light.imageset/file-py-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-py.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-light.imageset/file-py-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-py.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-light.imageset/file-rs-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-rs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-light.imageset/file-rs-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-rs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-light.imageset/file-sql-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-sql.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-light.imageset/file-sql-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-sql.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-light.imageset/file-svg-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-svg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-light.imageset/file-svg-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-svg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-light.imageset/file-text-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-light.imageset/file-text-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-light.imageset/file-ts-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-ts.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-light.imageset/file-ts-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-ts.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-light.imageset/file-tsx-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-tsx.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-light.imageset/file-tsx-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-tsx.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-light.imageset/file-txt-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-txt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-light.imageset/file-txt-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-txt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-light.imageset/file-video-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-video.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-light.imageset/file-video-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-video.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-light.imageset/file-vue-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-vue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-light.imageset/file-vue-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-vue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-light.imageset/file-x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-light.imageset/file-x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-light.imageset/file-xls-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-xls.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-light.imageset/file-xls-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-xls.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-light.imageset/file-zip-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file-zip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-light.imageset/file-zip-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file-zip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-light.imageset/file-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/file.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-light.imageset/file-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/file.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-light.imageset/files-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/files.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-light.imageset/files-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/files.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-light.imageset/film-reel-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/film-reel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-light.imageset/film-reel-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/film-reel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-light.imageset/film-script-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/film-script.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-light.imageset/film-script-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/film-script.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-light.imageset/film-slate-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/film-slate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-light.imageset/film-slate-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/film-slate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-light.imageset/film-strip-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/film-strip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-light.imageset/film-strip-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/film-strip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-light.imageset/fingerprint-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/fingerprint-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-light.imageset/fingerprint-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/fingerprint-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-light.imageset/fingerprint-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/fingerprint.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-light.imageset/fingerprint-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/fingerprint.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-light.imageset/finn-the-human-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/finn-the-human.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-light.imageset/finn-the-human-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/finn-the-human.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-light.imageset/fire-extinguisher-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/fire-extinguisher.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-light.imageset/fire-extinguisher-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/fire-extinguisher.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-light.imageset/fire-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/fire-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-light.imageset/fire-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/fire-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-light.imageset/fire-truck-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/fire-truck.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-light.imageset/fire-truck-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/fire-truck.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-light.imageset/fire-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/fire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-light.imageset/fire-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/fire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-light.imageset/first-aid-kit-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/first-aid-kit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-light.imageset/first-aid-kit-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/first-aid-kit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-light.imageset/first-aid-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/first-aid.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-light.imageset/first-aid-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/first-aid.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-light.imageset/fish-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/fish-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-light.imageset/fish-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/fish-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-light.imageset/fish-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/fish.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-light.imageset/fish-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/fish.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-light.imageset/flag-banner-fold-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/flag-banner-fold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-light.imageset/flag-banner-fold-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/flag-banner-fold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-light.imageset/flag-banner-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/flag-banner.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-light.imageset/flag-banner-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/flag-banner.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-light.imageset/flag-checkered-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/flag-checkered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-light.imageset/flag-checkered-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/flag-checkered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-light.imageset/flag-pennant-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/flag-pennant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-light.imageset/flag-pennant-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/flag-pennant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-light.imageset/flag-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/flag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-light.imageset/flag-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/flag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-light.imageset/flame-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/flame.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-light.imageset/flame-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/flame.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-light.imageset/flashlight-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/flashlight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-light.imageset/flashlight-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/flashlight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-light.imageset/flask-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/flask.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-light.imageset/flask-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/flask.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-light.imageset/flip-horizontal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/flip-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-light.imageset/flip-horizontal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/flip-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-light.imageset/flip-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/flip-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-light.imageset/flip-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/flip-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-light.imageset/floppy-disk-back-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/floppy-disk-back.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-light.imageset/floppy-disk-back-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/floppy-disk-back.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-light.imageset/floppy-disk-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/floppy-disk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-light.imageset/floppy-disk-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/floppy-disk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-light.imageset/flow-arrow-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/flow-arrow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-light.imageset/flow-arrow-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/flow-arrow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-light.imageset/flower-lotus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/flower-lotus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-light.imageset/flower-lotus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/flower-lotus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-light.imageset/flower-tulip-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/flower-tulip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-light.imageset/flower-tulip-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/flower-tulip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-light.imageset/flower-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/flower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-light.imageset/flower-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/flower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-light.imageset/flying-saucer-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/flying-saucer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-light.imageset/flying-saucer-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/flying-saucer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-light.imageset/folder-dashed-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-light.imageset/folder-dashed-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-light.imageset/folder-lock-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-light.imageset/folder-lock-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-light.imageset/folder-minus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-light.imageset/folder-minus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-light.imageset/folder-open-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-light.imageset/folder-open-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-light.imageset/folder-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-light.imageset/folder-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-light.imageset/folder-simple-dashed-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-simple-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-light.imageset/folder-simple-dashed-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-simple-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-light.imageset/folder-simple-lock-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-simple-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-light.imageset/folder-simple-lock-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-simple-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-light.imageset/folder-simple-minus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-simple-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-light.imageset/folder-simple-minus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-simple-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-light.imageset/folder-simple-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-simple-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-light.imageset/folder-simple-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-simple-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-light.imageset/folder-simple-star-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-simple-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-light.imageset/folder-simple-star-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-simple-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-light.imageset/folder-simple-user-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-simple-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-light.imageset/folder-simple-user-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-simple-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-light.imageset/folder-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-light.imageset/folder-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-light.imageset/folder-star-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-light.imageset/folder-star-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-light.imageset/folder-user-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-light.imageset/folder-user-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folder-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-light.imageset/folder-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-light.imageset/folder-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-light.imageset/folders-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/folders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-light.imageset/folders-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/folders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-light.imageset/football-helmet-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/football-helmet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-light.imageset/football-helmet-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/football-helmet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-light.imageset/football-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/football.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-light.imageset/football-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/football.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-light.imageset/footprints-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/footprints.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-light.imageset/footprints-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/footprints.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-light.imageset/fork-knife-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/fork-knife.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-light.imageset/fork-knife-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/fork-knife.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-light.imageset/four-k-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/four-k.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-light.imageset/four-k-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/four-k.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-light.imageset/frame-corners-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/frame-corners.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-light.imageset/frame-corners-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/frame-corners.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-light.imageset/framer-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/framer-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-light.imageset/framer-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/framer-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-light.imageset/function-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/function.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-light.imageset/function-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/function.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-light.imageset/funnel-simple-x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/funnel-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-light.imageset/funnel-simple-x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/funnel-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-light.imageset/funnel-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/funnel-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-light.imageset/funnel-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/funnel-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-light.imageset/funnel-x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/funnel-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-light.imageset/funnel-x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/funnel-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-light.imageset/funnel-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/funnel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-light.imageset/funnel-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/funnel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-light.imageset/game-controller-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/game-controller.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-light.imageset/game-controller-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/game-controller.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-light.imageset/garage-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/garage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-light.imageset/garage-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/garage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-light.imageset/gas-can-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gas-can.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-light.imageset/gas-can-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gas-can.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-light.imageset/gas-pump-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gas-pump.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-light.imageset/gas-pump-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gas-pump.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-light.imageset/gauge-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gauge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-light.imageset/gauge-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gauge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-light.imageset/gavel-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gavel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-light.imageset/gavel-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gavel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-light.imageset/gear-fine-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gear-fine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-light.imageset/gear-fine-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gear-fine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-light.imageset/gear-six-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gear-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-light.imageset/gear-six-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gear-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-light.imageset/gear-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-light.imageset/gear-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-light.imageset/gender-female-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gender-female.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-light.imageset/gender-female-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gender-female.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-light.imageset/gender-intersex-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gender-intersex.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-light.imageset/gender-intersex-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gender-intersex.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-light.imageset/gender-male-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gender-male.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-light.imageset/gender-male-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gender-male.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-light.imageset/gender-neuter-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gender-neuter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-light.imageset/gender-neuter-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gender-neuter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-light.imageset/gender-nonbinary-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gender-nonbinary.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-light.imageset/gender-nonbinary-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gender-nonbinary.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-light.imageset/gender-transgender-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gender-transgender.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-light.imageset/gender-transgender-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gender-transgender.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-light.imageset/ghost-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/ghost.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-light.imageset/ghost-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/ghost.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-light.imageset/gif-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gif.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-light.imageset/gif-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gif.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-light.imageset/gift-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gift.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-light.imageset/gift-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gift.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-light.imageset/git-branch-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/git-branch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-light.imageset/git-branch-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/git-branch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-light.imageset/git-commit-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/git-commit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-light.imageset/git-commit-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/git-commit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-light.imageset/git-diff-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/git-diff.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-light.imageset/git-diff-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/git-diff.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-light.imageset/git-fork-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/git-fork.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-light.imageset/git-fork-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/git-fork.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-light.imageset/git-merge-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/git-merge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-light.imageset/git-merge-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/git-merge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-light.imageset/git-pull-request-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/git-pull-request.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-light.imageset/git-pull-request-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/git-pull-request.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-light.imageset/github-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/github-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-light.imageset/github-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/github-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-light.imageset/gitlab-logo-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gitlab-logo-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-light.imageset/gitlab-logo-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gitlab-logo-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-light.imageset/gitlab-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gitlab-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-light.imageset/gitlab-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gitlab-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-light.imageset/globe-hemisphere-east-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/globe-hemisphere-east.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-light.imageset/globe-hemisphere-east-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/globe-hemisphere-east.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-light.imageset/globe-hemisphere-west-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/globe-hemisphere-west.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-light.imageset/globe-hemisphere-west-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/globe-hemisphere-west.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-light.imageset/globe-simple-x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/globe-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-light.imageset/globe-simple-x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/globe-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-light.imageset/globe-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/globe-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-light.imageset/globe-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/globe-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-light.imageset/globe-stand-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/globe-stand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-light.imageset/globe-stand-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/globe-stand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-light.imageset/globe-x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/globe-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-light.imageset/globe-x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/globe-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-light.imageset/globe-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/globe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-light.imageset/globe-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/globe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-light.imageset/goggles-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/goggles.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-light.imageset/goggles-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/goggles.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-light.imageset/golf-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/golf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-light.imageset/golf-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/golf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-light.imageset/goodreads-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/goodreads-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-light.imageset/goodreads-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/goodreads-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-light.imageset/google-cardboard-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/google-cardboard-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-light.imageset/google-cardboard-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/google-cardboard-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-light.imageset/google-chrome-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/google-chrome-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-light.imageset/google-chrome-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/google-chrome-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-light.imageset/google-drive-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/google-drive-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-light.imageset/google-drive-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/google-drive-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-light.imageset/google-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/google-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-light.imageset/google-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/google-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-light.imageset/google-photos-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/google-photos-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-light.imageset/google-photos-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/google-photos-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-light.imageset/google-play-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/google-play-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-light.imageset/google-play-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/google-play-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-light.imageset/google-podcasts-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/google-podcasts-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-light.imageset/google-podcasts-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/google-podcasts-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-light.imageset/gps-fix-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gps-fix.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-light.imageset/gps-fix-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gps-fix.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-light.imageset/gps-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gps-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-light.imageset/gps-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gps-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-light.imageset/gps-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gps.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-light.imageset/gps-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gps.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-light.imageset/gradient-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/gradient.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-light.imageset/gradient-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/gradient.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-light.imageset/graduation-cap-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/graduation-cap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-light.imageset/graduation-cap-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/graduation-cap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-light.imageset/grains-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/grains-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-light.imageset/grains-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/grains-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-light.imageset/grains-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/grains.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-light.imageset/grains-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/grains.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-light.imageset/graph-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/graph.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-light.imageset/graph-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/graph.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-light.imageset/graphics-card-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/graphics-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-light.imageset/graphics-card-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/graphics-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-light.imageset/greater-than-or-equal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/greater-than-or-equal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-light.imageset/greater-than-or-equal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/greater-than-or-equal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-light.imageset/greater-than-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/greater-than.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-light.imageset/greater-than-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/greater-than.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-light.imageset/grid-four-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/grid-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-light.imageset/grid-four-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/grid-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-light.imageset/grid-nine-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/grid-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-light.imageset/grid-nine-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/grid-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-light.imageset/guitar-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/guitar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-light.imageset/guitar-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/guitar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-light.imageset/hair-dryer-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hair-dryer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-light.imageset/hair-dryer-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hair-dryer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-light.imageset/hamburger-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hamburger.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-light.imageset/hamburger-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hamburger.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-light.imageset/hammer-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hammer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-light.imageset/hammer-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hammer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-light.imageset/hand-arrow-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-light.imageset/hand-arrow-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-light.imageset/hand-arrow-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-light.imageset/hand-arrow-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-light.imageset/hand-coins-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-coins.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-light.imageset/hand-coins-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-coins.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-light.imageset/hand-deposit-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-deposit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-light.imageset/hand-deposit-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-deposit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-light.imageset/hand-eye-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-eye.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-light.imageset/hand-eye-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-eye.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-light.imageset/hand-fist-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-fist.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-light.imageset/hand-fist-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-fist.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-light.imageset/hand-grabbing-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-grabbing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-light.imageset/hand-grabbing-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-grabbing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-light.imageset/hand-heart-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-light.imageset/hand-heart-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-light.imageset/hand-palm-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-palm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-light.imageset/hand-palm-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-palm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-light.imageset/hand-peace-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-peace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-light.imageset/hand-peace-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-peace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-light.imageset/hand-pointing-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-pointing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-light.imageset/hand-pointing-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-pointing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-light.imageset/hand-soap-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-soap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-light.imageset/hand-soap-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-soap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-light.imageset/hand-swipe-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-swipe-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-light.imageset/hand-swipe-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-swipe-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-light.imageset/hand-swipe-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-swipe-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-light.imageset/hand-swipe-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-swipe-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-light.imageset/hand-tap-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-tap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-light.imageset/hand-tap-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-tap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-light.imageset/hand-waving-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-waving.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-light.imageset/hand-waving-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-waving.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-light.imageset/hand-withdraw-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-withdraw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-light.imageset/hand-withdraw-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand-withdraw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-light.imageset/hand-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-light.imageset/hand-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-light.imageset/handbag-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/handbag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-light.imageset/handbag-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/handbag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-light.imageset/handbag-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/handbag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-light.imageset/handbag-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/handbag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-light.imageset/hands-clapping-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hands-clapping.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-light.imageset/hands-clapping-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hands-clapping.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-light.imageset/hands-praying-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hands-praying.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-light.imageset/hands-praying-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hands-praying.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-light.imageset/handshake-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/handshake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-light.imageset/handshake-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/handshake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-light.imageset/hard-drive-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hard-drive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-light.imageset/hard-drive-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hard-drive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-light.imageset/hard-drives-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hard-drives.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-light.imageset/hard-drives-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hard-drives.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-light.imageset/hard-hat-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hard-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-light.imageset/hard-hat-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hard-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-light.imageset/hash-straight-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hash-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-light.imageset/hash-straight-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hash-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-light.imageset/hash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-light.imageset/hash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-light.imageset/head-circuit-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/head-circuit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-light.imageset/head-circuit-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/head-circuit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-light.imageset/headlights-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/headlights.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-light.imageset/headlights-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/headlights.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-light.imageset/headphones-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/headphones.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-light.imageset/headphones-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/headphones.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-light.imageset/headset-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/headset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-light.imageset/headset-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/headset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-light.imageset/heart-break-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/heart-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-light.imageset/heart-break-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/heart-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-light.imageset/heart-half-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/heart-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-light.imageset/heart-half-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/heart-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-light.imageset/heart-straight-break-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/heart-straight-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-light.imageset/heart-straight-break-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/heart-straight-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-light.imageset/heart-straight-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/heart-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-light.imageset/heart-straight-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/heart-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-light.imageset/heart-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-light.imageset/heart-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-light.imageset/heartbeat-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/heartbeat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-light.imageset/heartbeat-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/heartbeat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-light.imageset/hexagon-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hexagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-light.imageset/hexagon-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hexagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-light.imageset/high-definition-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/high-definition.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-light.imageset/high-definition-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/high-definition.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-light.imageset/high-heel-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/high-heel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-light.imageset/high-heel-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/high-heel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-light.imageset/highlighter-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/highlighter-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-light.imageset/highlighter-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/highlighter-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-light.imageset/highlighter-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/highlighter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-light.imageset/highlighter-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/highlighter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-light.imageset/hockey-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hockey.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-light.imageset/hockey-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hockey.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-light.imageset/hoodie-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hoodie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-light.imageset/hoodie-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hoodie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-light.imageset/horse-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/horse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-light.imageset/horse-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/horse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-light.imageset/hospital-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hospital.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-light.imageset/hospital-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hospital.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-light.imageset/hourglass-high-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-light.imageset/hourglass-high-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-light.imageset/hourglass-low-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-light.imageset/hourglass-low-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-light.imageset/hourglass-medium-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-light.imageset/hourglass-medium-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-light.imageset/hourglass-simple-high-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass-simple-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-light.imageset/hourglass-simple-high-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass-simple-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-light.imageset/hourglass-simple-low-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass-simple-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-light.imageset/hourglass-simple-low-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass-simple-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-light.imageset/hourglass-simple-medium-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass-simple-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-light.imageset/hourglass-simple-medium-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass-simple-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-light.imageset/hourglass-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-light.imageset/hourglass-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-light.imageset/hourglass-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-light.imageset/hourglass-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hourglass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-light.imageset/house-line-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/house-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-light.imageset/house-line-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/house-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-light.imageset/house-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/house-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-light.imageset/house-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/house-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-light.imageset/house-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/house.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-light.imageset/house-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/house.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-light.imageset/hurricane-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/hurricane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-light.imageset/hurricane-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/hurricane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-light.imageset/ice-cream-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/ice-cream.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-light.imageset/ice-cream-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/ice-cream.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-light.imageset/identification-badge-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/identification-badge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-light.imageset/identification-badge-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/identification-badge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-light.imageset/identification-card-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/identification-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-light.imageset/identification-card-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/identification-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-light.imageset/image-broken-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/image-broken.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-light.imageset/image-broken-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/image-broken.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-light.imageset/image-square-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/image-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-light.imageset/image-square-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/image-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-light.imageset/image-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/image.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-light.imageset/image-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/image.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-light.imageset/images-square-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/images-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-light.imageset/images-square-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/images-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-light.imageset/images-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/images.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-light.imageset/images-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/images.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-light.imageset/infinity-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/infinity.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-light.imageset/infinity-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/infinity.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-light.imageset/info-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/info.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-light.imageset/info-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/info.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-light.imageset/instagram-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/instagram-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-light.imageset/instagram-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/instagram-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-light.imageset/intersect-square-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/intersect-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-light.imageset/intersect-square-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/intersect-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-light.imageset/intersect-three-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/intersect-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-light.imageset/intersect-three-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/intersect-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-light.imageset/intersect-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/intersect.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-light.imageset/intersect-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/intersect.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-light.imageset/intersection-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/intersection.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-light.imageset/intersection-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/intersection.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-light.imageset/invoice-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/invoice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-light.imageset/invoice-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/invoice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-light.imageset/island-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/island.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-light.imageset/island-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/island.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-light.imageset/jar-label-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/jar-label.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-light.imageset/jar-label-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/jar-label.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-light.imageset/jar-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/jar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-light.imageset/jar-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/jar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-light.imageset/jeep-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/jeep.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-light.imageset/jeep-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/jeep.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-light.imageset/joystick-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/joystick.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-light.imageset/joystick-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/joystick.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-light.imageset/kanban-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/kanban.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-light.imageset/kanban-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/kanban.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-light.imageset/key-return-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/key-return.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-light.imageset/key-return-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/key-return.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-light.imageset/key-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/key.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-light.imageset/key-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/key.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-light.imageset/keyboard-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/keyboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-light.imageset/keyboard-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/keyboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-light.imageset/keyhole-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/keyhole.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-light.imageset/keyhole-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/keyhole.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-light.imageset/knife-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/knife.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-light.imageset/knife-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/knife.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-light.imageset/ladder-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/ladder-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-light.imageset/ladder-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/ladder-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-light.imageset/ladder-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/ladder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-light.imageset/ladder-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/ladder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-light.imageset/lamp-pendant-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lamp-pendant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-light.imageset/lamp-pendant-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lamp-pendant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-light.imageset/lamp-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lamp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-light.imageset/lamp-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lamp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-light.imageset/laptop-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/laptop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-light.imageset/laptop-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/laptop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-light.imageset/lasso-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lasso.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-light.imageset/lasso-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lasso.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-light.imageset/lastfm-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lastfm-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-light.imageset/lastfm-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lastfm-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-light.imageset/layout-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/layout.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-light.imageset/layout-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/layout.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-light.imageset/leaf-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/leaf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-light.imageset/leaf-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/leaf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-light.imageset/lectern-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lectern.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-light.imageset/lectern-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lectern.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-light.imageset/lego-smiley-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lego-smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-light.imageset/lego-smiley-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lego-smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-light.imageset/lego-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lego.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-light.imageset/lego-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lego.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-light.imageset/less-than-or-equal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/less-than-or-equal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-light.imageset/less-than-or-equal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/less-than-or-equal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-light.imageset/less-than-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/less-than.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-light.imageset/less-than-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/less-than.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-light.imageset/letter-circle-h-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/letter-circle-h.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-light.imageset/letter-circle-h-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/letter-circle-h.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-light.imageset/letter-circle-p-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/letter-circle-p.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-light.imageset/letter-circle-p-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/letter-circle-p.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-light.imageset/letter-circle-v-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/letter-circle-v.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-light.imageset/letter-circle-v-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/letter-circle-v.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-light.imageset/lifebuoy-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lifebuoy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-light.imageset/lifebuoy-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lifebuoy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-light.imageset/lightbulb-filament-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lightbulb-filament.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-light.imageset/lightbulb-filament-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lightbulb-filament.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-light.imageset/lightbulb-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lightbulb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-light.imageset/lightbulb-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lightbulb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-light.imageset/lighthouse-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lighthouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-light.imageset/lighthouse-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lighthouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-light.imageset/lightning-a-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lightning-a.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-light.imageset/lightning-a-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lightning-a.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-light.imageset/lightning-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lightning-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-light.imageset/lightning-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lightning-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-light.imageset/lightning-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lightning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-light.imageset/lightning-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lightning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-light.imageset/line-segment-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/line-segment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-light.imageset/line-segment-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/line-segment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-light.imageset/line-segments-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/line-segments.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-light.imageset/line-segments-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/line-segments.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-light.imageset/line-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-light.imageset/line-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-light.imageset/link-break-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/link-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-light.imageset/link-break-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/link-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-light.imageset/link-simple-break-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/link-simple-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-light.imageset/link-simple-break-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/link-simple-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-light.imageset/link-simple-horizontal-break-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/link-simple-horizontal-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-light.imageset/link-simple-horizontal-break-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/link-simple-horizontal-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-light.imageset/link-simple-horizontal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/link-simple-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-light.imageset/link-simple-horizontal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/link-simple-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-light.imageset/link-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/link-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-light.imageset/link-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/link-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-light.imageset/link-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/link.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-light.imageset/link-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/link.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-light.imageset/linkedin-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/linkedin-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-light.imageset/linkedin-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/linkedin-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-light.imageset/linktree-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/linktree-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-light.imageset/linktree-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/linktree-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-light.imageset/linux-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/linux-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-light.imageset/linux-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/linux-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-light.imageset/list-bullets-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/list-bullets.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-light.imageset/list-bullets-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/list-bullets.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-light.imageset/list-checks-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/list-checks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-light.imageset/list-checks-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/list-checks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-light.imageset/list-dashes-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/list-dashes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-light.imageset/list-dashes-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/list-dashes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-light.imageset/list-heart-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/list-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-light.imageset/list-heart-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/list-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-light.imageset/list-magnifying-glass-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/list-magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-light.imageset/list-magnifying-glass-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/list-magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-light.imageset/list-numbers-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/list-numbers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-light.imageset/list-numbers-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/list-numbers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-light.imageset/list-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/list-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-light.imageset/list-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/list-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-light.imageset/list-star-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/list-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-light.imageset/list-star-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/list-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-light.imageset/list-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-light.imageset/list-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-light.imageset/lock-key-open-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lock-key-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-light.imageset/lock-key-open-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lock-key-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-light.imageset/lock-key-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lock-key.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-light.imageset/lock-key-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lock-key.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-light.imageset/lock-laminated-open-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lock-laminated-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-light.imageset/lock-laminated-open-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lock-laminated-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-light.imageset/lock-laminated-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lock-laminated.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-light.imageset/lock-laminated-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lock-laminated.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-light.imageset/lock-open-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lock-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-light.imageset/lock-open-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lock-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-light.imageset/lock-simple-open-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lock-simple-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-light.imageset/lock-simple-open-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lock-simple-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-light.imageset/lock-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lock-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-light.imageset/lock-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lock-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-light.imageset/lock-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-light.imageset/lock-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-light.imageset/lockers-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/lockers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-light.imageset/lockers-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/lockers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-light.imageset/log-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/log.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-light.imageset/log-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/log.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-light.imageset/magic-wand-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/magic-wand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-light.imageset/magic-wand-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/magic-wand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-light.imageset/magnet-straight-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/magnet-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-light.imageset/magnet-straight-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/magnet-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-light.imageset/magnet-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/magnet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-light.imageset/magnet-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/magnet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-light.imageset/magnifying-glass-minus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/magnifying-glass-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-light.imageset/magnifying-glass-minus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/magnifying-glass-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-light.imageset/magnifying-glass-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/magnifying-glass-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-light.imageset/magnifying-glass-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/magnifying-glass-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-light.imageset/magnifying-glass-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-light.imageset/magnifying-glass-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-light.imageset/mailbox-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/mailbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-light.imageset/mailbox-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/mailbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-light.imageset/map-pin-area-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/map-pin-area.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-light.imageset/map-pin-area-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/map-pin-area.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-light.imageset/map-pin-line-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/map-pin-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-light.imageset/map-pin-line-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/map-pin-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-light.imageset/map-pin-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/map-pin-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-light.imageset/map-pin-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/map-pin-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-light.imageset/map-pin-simple-area-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/map-pin-simple-area.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-light.imageset/map-pin-simple-area-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/map-pin-simple-area.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-light.imageset/map-pin-simple-line-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/map-pin-simple-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-light.imageset/map-pin-simple-line-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/map-pin-simple-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-light.imageset/map-pin-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/map-pin-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-light.imageset/map-pin-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/map-pin-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-light.imageset/map-pin-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/map-pin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-light.imageset/map-pin-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/map-pin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-light.imageset/map-trifold-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/map-trifold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-light.imageset/map-trifold-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/map-trifold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-light.imageset/markdown-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/markdown-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-light.imageset/markdown-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/markdown-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-light.imageset/marker-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/marker-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-light.imageset/marker-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/marker-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-light.imageset/martini-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/martini.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-light.imageset/martini-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/martini.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-light.imageset/mask-happy-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/mask-happy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-light.imageset/mask-happy-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/mask-happy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-light.imageset/mask-sad-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/mask-sad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-light.imageset/mask-sad-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/mask-sad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-light.imageset/mastodon-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/mastodon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-light.imageset/mastodon-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/mastodon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-light.imageset/math-operations-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/math-operations.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-light.imageset/math-operations-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/math-operations.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-light.imageset/matrix-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/matrix-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-light.imageset/matrix-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/matrix-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-light.imageset/medal-military-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/medal-military.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-light.imageset/medal-military-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/medal-military.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-light.imageset/medal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/medal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-light.imageset/medal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/medal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-light.imageset/medium-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/medium-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-light.imageset/medium-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/medium-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-light.imageset/megaphone-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/megaphone-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-light.imageset/megaphone-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/megaphone-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-light.imageset/megaphone-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/megaphone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-light.imageset/megaphone-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/megaphone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-light.imageset/member-of-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/member-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-light.imageset/member-of-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/member-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-light.imageset/memory-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/memory.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-light.imageset/memory-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/memory.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-light.imageset/messenger-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/messenger-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-light.imageset/messenger-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/messenger-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-light.imageset/meta-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/meta-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-light.imageset/meta-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/meta-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-light.imageset/meteor-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/meteor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-light.imageset/meteor-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/meteor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-light.imageset/metronome-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/metronome.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-light.imageset/metronome-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/metronome.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-light.imageset/microphone-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/microphone-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-light.imageset/microphone-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/microphone-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-light.imageset/microphone-stage-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/microphone-stage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-light.imageset/microphone-stage-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/microphone-stage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-light.imageset/microphone-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/microphone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-light.imageset/microphone-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/microphone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-light.imageset/microscope-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/microscope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-light.imageset/microscope-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/microscope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-light.imageset/microsoft-excel-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/microsoft-excel-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-light.imageset/microsoft-excel-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/microsoft-excel-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-light.imageset/microsoft-outlook-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/microsoft-outlook-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-light.imageset/microsoft-outlook-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/microsoft-outlook-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-light.imageset/microsoft-powerpoint-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/microsoft-powerpoint-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-light.imageset/microsoft-powerpoint-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/microsoft-powerpoint-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-light.imageset/microsoft-teams-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/microsoft-teams-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-light.imageset/microsoft-teams-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/microsoft-teams-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-light.imageset/microsoft-word-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/microsoft-word-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-light.imageset/microsoft-word-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/microsoft-word-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-light.imageset/minus-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/minus-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-light.imageset/minus-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/minus-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-light.imageset/minus-square-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/minus-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-light.imageset/minus-square-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/minus-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-light.imageset/minus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-light.imageset/minus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-light.imageset/money-wavy-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/money-wavy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-light.imageset/money-wavy-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/money-wavy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-light.imageset/money-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/money.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-light.imageset/money-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/money.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-light.imageset/monitor-arrow-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/monitor-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-light.imageset/monitor-arrow-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/monitor-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-light.imageset/monitor-play-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/monitor-play.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-light.imageset/monitor-play-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/monitor-play.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-light.imageset/monitor-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/monitor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-light.imageset/monitor-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/monitor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-light.imageset/moon-stars-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/moon-stars.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-light.imageset/moon-stars-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/moon-stars.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-light.imageset/moon-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/moon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-light.imageset/moon-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/moon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-light.imageset/moped-front-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/moped-front.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-light.imageset/moped-front-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/moped-front.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-light.imageset/moped-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/moped.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-light.imageset/moped-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/moped.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-light.imageset/mosque-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/mosque.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-light.imageset/mosque-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/mosque.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-light.imageset/motorcycle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/motorcycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-light.imageset/motorcycle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/motorcycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-light.imageset/mountains-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/mountains.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-light.imageset/mountains-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/mountains.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-light.imageset/mouse-left-click-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/mouse-left-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-light.imageset/mouse-left-click-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/mouse-left-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-light.imageset/mouse-middle-click-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/mouse-middle-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-light.imageset/mouse-middle-click-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/mouse-middle-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-light.imageset/mouse-right-click-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/mouse-right-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-light.imageset/mouse-right-click-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/mouse-right-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-light.imageset/mouse-scroll-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/mouse-scroll.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-light.imageset/mouse-scroll-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/mouse-scroll.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-light.imageset/mouse-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/mouse-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-light.imageset/mouse-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/mouse-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-light.imageset/mouse-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/mouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-light.imageset/mouse-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/mouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-light.imageset/music-note-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/music-note-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-light.imageset/music-note-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/music-note-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-light.imageset/music-note-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/music-note.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-light.imageset/music-note-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/music-note.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-light.imageset/music-notes-minus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/music-notes-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-light.imageset/music-notes-minus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/music-notes-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-light.imageset/music-notes-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/music-notes-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-light.imageset/music-notes-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/music-notes-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-light.imageset/music-notes-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/music-notes-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-light.imageset/music-notes-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/music-notes-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-light.imageset/music-notes-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/music-notes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-light.imageset/music-notes-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/music-notes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-light.imageset/navigation-arrow-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/navigation-arrow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-light.imageset/navigation-arrow-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/navigation-arrow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-light.imageset/needle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/needle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-light.imageset/needle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/needle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-light.imageset/network-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/network-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-light.imageset/network-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/network-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-light.imageset/network-x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/network-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-light.imageset/network-x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/network-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-light.imageset/network-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/network.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-light.imageset/network-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/network.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-light.imageset/newspaper-clipping-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/newspaper-clipping.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-light.imageset/newspaper-clipping-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/newspaper-clipping.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-light.imageset/newspaper-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/newspaper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-light.imageset/newspaper-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/newspaper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-light.imageset/not-equals-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/not-equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-light.imageset/not-equals-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/not-equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-light.imageset/not-member-of-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/not-member-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-light.imageset/not-member-of-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/not-member-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-light.imageset/not-subset-of-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/not-subset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-light.imageset/not-subset-of-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/not-subset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-light.imageset/not-superset-of-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/not-superset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-light.imageset/not-superset-of-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/not-superset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-light.imageset/notches-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/notches.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-light.imageset/notches-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/notches.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-light.imageset/note-blank-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/note-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-light.imageset/note-blank-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/note-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-light.imageset/note-pencil-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/note-pencil.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-light.imageset/note-pencil-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/note-pencil.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-light.imageset/note-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/note.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-light.imageset/note-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/note.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-light.imageset/notebook-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/notebook.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-light.imageset/notebook-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/notebook.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-light.imageset/notepad-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/notepad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-light.imageset/notepad-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/notepad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-light.imageset/notification-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/notification.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-light.imageset/notification-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/notification.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-light.imageset/notion-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/notion-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-light.imageset/notion-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/notion-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-light.imageset/nuclear-plant-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/nuclear-plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-light.imageset/nuclear-plant-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/nuclear-plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-light.imageset/number-circle-eight-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-light.imageset/number-circle-eight-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-light.imageset/number-circle-five-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-light.imageset/number-circle-five-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-light.imageset/number-circle-four-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-light.imageset/number-circle-four-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-light.imageset/number-circle-nine-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-light.imageset/number-circle-nine-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-light.imageset/number-circle-one-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-light.imageset/number-circle-one-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-light.imageset/number-circle-seven-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-light.imageset/number-circle-seven-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-light.imageset/number-circle-six-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-light.imageset/number-circle-six-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-light.imageset/number-circle-three-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-light.imageset/number-circle-three-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-light.imageset/number-circle-two-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-light.imageset/number-circle-two-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-light.imageset/number-circle-zero-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-light.imageset/number-circle-zero-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-circle-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-light.imageset/number-eight-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-light.imageset/number-eight-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-light.imageset/number-five-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-light.imageset/number-five-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-light.imageset/number-four-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-light.imageset/number-four-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-light.imageset/number-nine-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-light.imageset/number-nine-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-light.imageset/number-one-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-light.imageset/number-one-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-light.imageset/number-seven-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-light.imageset/number-seven-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-light.imageset/number-six-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-light.imageset/number-six-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-light.imageset/number-square-eight-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-light.imageset/number-square-eight-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-light.imageset/number-square-five-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-light.imageset/number-square-five-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-light.imageset/number-square-four-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-light.imageset/number-square-four-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-light.imageset/number-square-nine-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-light.imageset/number-square-nine-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-light.imageset/number-square-one-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-light.imageset/number-square-one-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-light.imageset/number-square-seven-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-light.imageset/number-square-seven-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-light.imageset/number-square-six-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-light.imageset/number-square-six-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-light.imageset/number-square-three-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-light.imageset/number-square-three-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-light.imageset/number-square-two-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-light.imageset/number-square-two-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-light.imageset/number-square-zero-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-light.imageset/number-square-zero-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-square-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-light.imageset/number-three-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-light.imageset/number-three-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-light.imageset/number-two-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-light.imageset/number-two-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-light.imageset/number-zero-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/number-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-light.imageset/number-zero-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/number-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-light.imageset/numpad-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/numpad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-light.imageset/numpad-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/numpad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-light.imageset/nut-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/nut.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-light.imageset/nut-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/nut.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-light.imageset/ny-times-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/ny-times-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-light.imageset/ny-times-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/ny-times-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-light.imageset/octagon-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/octagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-light.imageset/octagon-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/octagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-light.imageset/office-chair-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/office-chair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-light.imageset/office-chair-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/office-chair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-light.imageset/onigiri-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/onigiri.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-light.imageset/onigiri-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/onigiri.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-light.imageset/open-ai-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/open-ai-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-light.imageset/open-ai-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/open-ai-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-light.imageset/option-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/option.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-light.imageset/option-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/option.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-light.imageset/orange-slice-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/orange-slice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-light.imageset/orange-slice-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/orange-slice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-light.imageset/orange-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/orange.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-light.imageset/orange-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/orange.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-light.imageset/oven-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/oven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-light.imageset/oven-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/oven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-light.imageset/package-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/package.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-light.imageset/package-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/package.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-light.imageset/paint-brush-broad-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/paint-brush-broad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-light.imageset/paint-brush-broad-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/paint-brush-broad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-light.imageset/paint-brush-household-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/paint-brush-household.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-light.imageset/paint-brush-household-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/paint-brush-household.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-light.imageset/paint-brush-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/paint-brush.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-light.imageset/paint-brush-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/paint-brush.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-light.imageset/paint-bucket-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/paint-bucket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-light.imageset/paint-bucket-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/paint-bucket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-light.imageset/paint-roller-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/paint-roller.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-light.imageset/paint-roller-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/paint-roller.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-light.imageset/palette-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/palette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-light.imageset/palette-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/palette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-light.imageset/panorama-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/panorama.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-light.imageset/panorama-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/panorama.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-light.imageset/pants-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pants.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-light.imageset/pants-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pants.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-light.imageset/paper-plane-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/paper-plane-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-light.imageset/paper-plane-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/paper-plane-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-light.imageset/paper-plane-tilt-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/paper-plane-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-light.imageset/paper-plane-tilt-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/paper-plane-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-light.imageset/paper-plane-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/paper-plane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-light.imageset/paper-plane-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/paper-plane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-light.imageset/paperclip-horizontal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/paperclip-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-light.imageset/paperclip-horizontal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/paperclip-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-light.imageset/paperclip-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/paperclip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-light.imageset/paperclip-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/paperclip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-light.imageset/parachute-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/parachute.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-light.imageset/parachute-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/parachute.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-light.imageset/paragraph-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/paragraph.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-light.imageset/paragraph-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/paragraph.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-light.imageset/parallelogram-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/parallelogram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-light.imageset/parallelogram-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/parallelogram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-light.imageset/park-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/park.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-light.imageset/park-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/park.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-light.imageset/password-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/password.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-light.imageset/password-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/password.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-light.imageset/path-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/path.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-light.imageset/path-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/path.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-light.imageset/patreon-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/patreon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-light.imageset/patreon-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/patreon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-light.imageset/pause-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pause-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-light.imageset/pause-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pause-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-light.imageset/pause-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-light.imageset/pause-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-light.imageset/paw-print-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/paw-print.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-light.imageset/paw-print-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/paw-print.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-light.imageset/paypal-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/paypal-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-light.imageset/paypal-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/paypal-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-light.imageset/peace-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/peace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-light.imageset/peace-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/peace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-light.imageset/pen-nib-straight-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pen-nib-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-light.imageset/pen-nib-straight-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pen-nib-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-light.imageset/pen-nib-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pen-nib.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-light.imageset/pen-nib-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pen-nib.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-light.imageset/pen-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-light.imageset/pen-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-light.imageset/pencil-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-light.imageset/pencil-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-light.imageset/pencil-line-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-light.imageset/pencil-line-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-light.imageset/pencil-ruler-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil-ruler.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-light.imageset/pencil-ruler-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil-ruler.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-light.imageset/pencil-simple-line-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil-simple-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-light.imageset/pencil-simple-line-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil-simple-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-light.imageset/pencil-simple-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-light.imageset/pencil-simple-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-light.imageset/pencil-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-light.imageset/pencil-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-light.imageset/pencil-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-light.imageset/pencil-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-light.imageset/pencil-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-light.imageset/pencil-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pencil.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-light.imageset/pentagon-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pentagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-light.imageset/pentagon-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pentagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-light.imageset/pentagram-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pentagram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-light.imageset/pentagram-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pentagram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-light.imageset/pepper-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pepper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-light.imageset/pepper-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pepper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-light.imageset/percent-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/percent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-light.imageset/percent-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/percent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-light.imageset/person-arms-spread-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/person-arms-spread.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-light.imageset/person-arms-spread-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/person-arms-spread.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-light.imageset/person-simple-bike-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-bike.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-light.imageset/person-simple-bike-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-bike.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-light.imageset/person-simple-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-light.imageset/person-simple-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-light.imageset/person-simple-hike-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-hike.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-light.imageset/person-simple-hike-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-hike.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-light.imageset/person-simple-run-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-run.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-light.imageset/person-simple-run-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-run.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-light.imageset/person-simple-ski-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-ski.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-light.imageset/person-simple-ski-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-ski.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-light.imageset/person-simple-snowboard-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-snowboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-light.imageset/person-simple-snowboard-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-snowboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-light.imageset/person-simple-swim-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-swim.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-light.imageset/person-simple-swim-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-swim.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-light.imageset/person-simple-tai-chi-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-tai-chi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-light.imageset/person-simple-tai-chi-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-tai-chi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-light.imageset/person-simple-throw-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-throw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-light.imageset/person-simple-throw-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-throw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-light.imageset/person-simple-walk-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-walk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-light.imageset/person-simple-walk-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple-walk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-light.imageset/person-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-light.imageset/person-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/person-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-light.imageset/person-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/person.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-light.imageset/person-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/person.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-light.imageset/perspective-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/perspective.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-light.imageset/perspective-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/perspective.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-light.imageset/phone-call-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-call.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-light.imageset/phone-call-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-call.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-light.imageset/phone-disconnect-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-disconnect.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-light.imageset/phone-disconnect-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-disconnect.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-light.imageset/phone-incoming-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-incoming.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-light.imageset/phone-incoming-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-incoming.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-light.imageset/phone-list-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-light.imageset/phone-list-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-light.imageset/phone-outgoing-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-outgoing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-light.imageset/phone-outgoing-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-outgoing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-light.imageset/phone-pause-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-light.imageset/phone-pause-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-light.imageset/phone-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-light.imageset/phone-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-light.imageset/phone-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-light.imageset/phone-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-light.imageset/phone-transfer-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-transfer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-light.imageset/phone-transfer-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-transfer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-light.imageset/phone-x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-light.imageset/phone-x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/phone-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-light.imageset/phone-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/phone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-light.imageset/phone-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/phone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-light.imageset/phosphor-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/phosphor-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-light.imageset/phosphor-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/phosphor-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-light.imageset/pi-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-light.imageset/pi-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-light.imageset/piano-keys-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/piano-keys.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-light.imageset/piano-keys-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/piano-keys.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-light.imageset/picnic-table-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/picnic-table.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-light.imageset/picnic-table-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/picnic-table.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-light.imageset/picture-in-picture-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/picture-in-picture.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-light.imageset/picture-in-picture-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/picture-in-picture.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-light.imageset/piggy-bank-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/piggy-bank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-light.imageset/piggy-bank-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/piggy-bank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-light.imageset/pill-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pill.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-light.imageset/pill-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pill.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-light.imageset/ping-pong-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/ping-pong.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-light.imageset/ping-pong-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/ping-pong.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-light.imageset/pint-glass-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pint-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-light.imageset/pint-glass-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pint-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-light.imageset/pinterest-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pinterest-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-light.imageset/pinterest-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pinterest-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-light.imageset/pinwheel-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pinwheel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-light.imageset/pinwheel-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pinwheel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-light.imageset/pipe-wrench-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pipe-wrench.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-light.imageset/pipe-wrench-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pipe-wrench.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-light.imageset/pipe-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pipe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-light.imageset/pipe-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pipe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-light.imageset/pix-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pix-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-light.imageset/pix-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pix-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-light.imageset/pizza-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pizza.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-light.imageset/pizza-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pizza.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-light.imageset/placeholder-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/placeholder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-light.imageset/placeholder-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/placeholder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-light.imageset/planet-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/planet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-light.imageset/planet-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/planet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-light.imageset/plant-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-light.imageset/plant-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-light.imageset/play-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/play-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-light.imageset/play-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/play-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-light.imageset/play-pause-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/play-pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-light.imageset/play-pause-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/play-pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-light.imageset/play-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/play.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-light.imageset/play-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/play.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-light.imageset/playlist-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/playlist.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-light.imageset/playlist-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/playlist.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-light.imageset/plug-charging-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/plug-charging.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-light.imageset/plug-charging-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/plug-charging.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-light.imageset/plug-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/plug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-light.imageset/plug-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/plug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-light.imageset/plugs-connected-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/plugs-connected.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-light.imageset/plugs-connected-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/plugs-connected.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-light.imageset/plugs-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/plugs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-light.imageset/plugs-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/plugs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-light.imageset/plus-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/plus-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-light.imageset/plus-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/plus-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-light.imageset/plus-minus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/plus-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-light.imageset/plus-minus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/plus-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-light.imageset/plus-square-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/plus-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-light.imageset/plus-square-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/plus-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-light.imageset/plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-light.imageset/plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-light.imageset/poker-chip-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/poker-chip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-light.imageset/poker-chip-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/poker-chip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-light.imageset/police-car-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/police-car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-light.imageset/police-car-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/police-car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-light.imageset/polygon-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/polygon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-light.imageset/polygon-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/polygon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-light.imageset/popcorn-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/popcorn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-light.imageset/popcorn-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/popcorn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-light.imageset/popsicle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/popsicle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-light.imageset/popsicle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/popsicle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-light.imageset/potted-plant-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/potted-plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-light.imageset/potted-plant-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/potted-plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-light.imageset/power-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/power.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-light.imageset/power-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/power.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-light.imageset/prescription-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/prescription.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-light.imageset/prescription-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/prescription.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-light.imageset/presentation-chart-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/presentation-chart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-light.imageset/presentation-chart-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/presentation-chart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-light.imageset/presentation-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/presentation.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-light.imageset/presentation-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/presentation.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-light.imageset/printer-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/printer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-light.imageset/printer-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/printer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-light.imageset/prohibit-inset-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/prohibit-inset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-light.imageset/prohibit-inset-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/prohibit-inset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-light.imageset/prohibit-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/prohibit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-light.imageset/prohibit-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/prohibit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-light.imageset/projector-screen-chart-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/projector-screen-chart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-light.imageset/projector-screen-chart-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/projector-screen-chart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-light.imageset/projector-screen-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/projector-screen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-light.imageset/projector-screen-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/projector-screen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-light.imageset/pulse-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/pulse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-light.imageset/pulse-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/pulse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-light.imageset/push-pin-simple-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/push-pin-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-light.imageset/push-pin-simple-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/push-pin-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-light.imageset/push-pin-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/push-pin-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-light.imageset/push-pin-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/push-pin-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-light.imageset/push-pin-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/push-pin-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-light.imageset/push-pin-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/push-pin-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-light.imageset/push-pin-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/push-pin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-light.imageset/push-pin-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/push-pin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-light.imageset/puzzle-piece-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/puzzle-piece.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-light.imageset/puzzle-piece-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/puzzle-piece.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-light.imageset/qr-code-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/qr-code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-light.imageset/qr-code-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/qr-code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-light.imageset/question-mark-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/question-mark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-light.imageset/question-mark-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/question-mark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-light.imageset/question-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/question.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-light.imageset/question-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/question.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-light.imageset/queue-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/queue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-light.imageset/queue-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/queue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-light.imageset/quotes-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/quotes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-light.imageset/quotes-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/quotes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-light.imageset/rabbit-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/rabbit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-light.imageset/rabbit-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/rabbit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-light.imageset/racquet-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/racquet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-light.imageset/racquet-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/racquet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-light.imageset/radical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/radical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-light.imageset/radical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/radical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-light.imageset/radio-button-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/radio-button.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-light.imageset/radio-button-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/radio-button.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-light.imageset/radio-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/radio.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-light.imageset/radio-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/radio.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-light.imageset/radioactive-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/radioactive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-light.imageset/radioactive-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/radioactive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-light.imageset/rainbow-cloud-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/rainbow-cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-light.imageset/rainbow-cloud-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/rainbow-cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-light.imageset/rainbow-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/rainbow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-light.imageset/rainbow-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/rainbow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-light.imageset/ranking-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/ranking.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-light.imageset/ranking-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/ranking.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-light.imageset/read-cv-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/read-cv-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-light.imageset/read-cv-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/read-cv-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-light.imageset/receipt-x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/receipt-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-light.imageset/receipt-x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/receipt-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-light.imageset/receipt-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/receipt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-light.imageset/receipt-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/receipt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-light.imageset/record-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/record.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-light.imageset/record-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/record.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-light.imageset/rectangle-dashed-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/rectangle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-light.imageset/rectangle-dashed-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/rectangle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-light.imageset/rectangle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/rectangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-light.imageset/rectangle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/rectangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-light.imageset/recycle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/recycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-light.imageset/recycle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/recycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-light.imageset/reddit-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/reddit-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-light.imageset/reddit-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/reddit-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-light.imageset/repeat-once-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/repeat-once.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-light.imageset/repeat-once-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/repeat-once.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-light.imageset/repeat-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/repeat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-light.imageset/repeat-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/repeat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-light.imageset/replit-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/replit-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-light.imageset/replit-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/replit-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-light.imageset/resize-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/resize.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-light.imageset/resize-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/resize.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-light.imageset/rewind-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/rewind-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-light.imageset/rewind-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/rewind-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-light.imageset/rewind-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/rewind.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-light.imageset/rewind-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/rewind.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-light.imageset/road-horizon-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/road-horizon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-light.imageset/road-horizon-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/road-horizon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-light.imageset/robot-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/robot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-light.imageset/robot-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/robot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-light.imageset/rocket-launch-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/rocket-launch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-light.imageset/rocket-launch-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/rocket-launch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-light.imageset/rocket-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/rocket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-light.imageset/rocket-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/rocket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-light.imageset/rows-plus-bottom-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/rows-plus-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-light.imageset/rows-plus-bottom-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/rows-plus-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-light.imageset/rows-plus-top-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/rows-plus-top.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-light.imageset/rows-plus-top-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/rows-plus-top.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-light.imageset/rows-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/rows.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-light.imageset/rows-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/rows.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-light.imageset/rss-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/rss-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-light.imageset/rss-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/rss-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-light.imageset/rss-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/rss.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-light.imageset/rss-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/rss.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-light.imageset/rug-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/rug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-light.imageset/rug-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/rug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-light.imageset/ruler-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/ruler.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-light.imageset/ruler-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/ruler.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-light.imageset/sailboat-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sailboat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-light.imageset/sailboat-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sailboat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-light.imageset/scales-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/scales.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-light.imageset/scales-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/scales.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-light.imageset/scan-smiley-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/scan-smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-light.imageset/scan-smiley-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/scan-smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-light.imageset/scan-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/scan.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-light.imageset/scan-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/scan.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-light.imageset/scissors-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/scissors.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-light.imageset/scissors-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/scissors.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-light.imageset/scooter-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/scooter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-light.imageset/scooter-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/scooter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-light.imageset/screencast-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/screencast.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-light.imageset/screencast-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/screencast.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-light.imageset/screwdriver-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/screwdriver.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-light.imageset/screwdriver-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/screwdriver.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-light.imageset/scribble-loop-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/scribble-loop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-light.imageset/scribble-loop-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/scribble-loop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-light.imageset/scribble-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/scribble.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-light.imageset/scribble-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/scribble.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-light.imageset/scroll-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/scroll.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-light.imageset/scroll-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/scroll.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-light.imageset/seal-check-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/seal-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-light.imageset/seal-check-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/seal-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-light.imageset/seal-percent-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/seal-percent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-light.imageset/seal-percent-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/seal-percent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-light.imageset/seal-question-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/seal-question.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-light.imageset/seal-question-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/seal-question.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-light.imageset/seal-warning-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/seal-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-light.imageset/seal-warning-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/seal-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-light.imageset/seal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/seal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-light.imageset/seal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/seal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-light.imageset/seat-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/seat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-light.imageset/seat-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/seat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-light.imageset/seatbelt-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/seatbelt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-light.imageset/seatbelt-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/seatbelt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-light.imageset/security-camera-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/security-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-light.imageset/security-camera-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/security-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-light.imageset/selection-all-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/selection-all.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-light.imageset/selection-all-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/selection-all.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-light.imageset/selection-background-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/selection-background.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-light.imageset/selection-background-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/selection-background.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-light.imageset/selection-foreground-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/selection-foreground.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-light.imageset/selection-foreground-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/selection-foreground.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-light.imageset/selection-inverse-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/selection-inverse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-light.imageset/selection-inverse-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/selection-inverse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-light.imageset/selection-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/selection-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-light.imageset/selection-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/selection-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-light.imageset/selection-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/selection-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-light.imageset/selection-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/selection-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-light.imageset/selection-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/selection.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-light.imageset/selection-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/selection.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-light.imageset/shapes-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shapes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-light.imageset/shapes-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shapes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-light.imageset/share-fat-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/share-fat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-light.imageset/share-fat-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/share-fat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-light.imageset/share-network-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/share-network.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-light.imageset/share-network-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/share-network.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-light.imageset/share-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/share.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-light.imageset/share-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/share.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-light.imageset/shield-check-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shield-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-light.imageset/shield-check-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shield-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-light.imageset/shield-checkered-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shield-checkered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-light.imageset/shield-checkered-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shield-checkered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-light.imageset/shield-chevron-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shield-chevron.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-light.imageset/shield-chevron-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shield-chevron.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-light.imageset/shield-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shield-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-light.imageset/shield-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shield-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-light.imageset/shield-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shield-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-light.imageset/shield-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shield-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-light.imageset/shield-star-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shield-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-light.imageset/shield-star-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shield-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-light.imageset/shield-warning-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shield-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-light.imageset/shield-warning-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shield-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-light.imageset/shield-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shield.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-light.imageset/shield-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shield.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-light.imageset/shipping-container-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shipping-container.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-light.imageset/shipping-container-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shipping-container.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-light.imageset/shirt-folded-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shirt-folded.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-light.imageset/shirt-folded-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shirt-folded.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-light.imageset/shooting-star-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shooting-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-light.imageset/shooting-star-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shooting-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-light.imageset/shopping-bag-open-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shopping-bag-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-light.imageset/shopping-bag-open-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shopping-bag-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-light.imageset/shopping-bag-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shopping-bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-light.imageset/shopping-bag-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shopping-bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-light.imageset/shopping-cart-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shopping-cart-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-light.imageset/shopping-cart-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shopping-cart-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-light.imageset/shopping-cart-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shopping-cart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-light.imageset/shopping-cart-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shopping-cart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-light.imageset/shovel-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shovel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-light.imageset/shovel-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shovel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-light.imageset/shower-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-light.imageset/shower-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-light.imageset/shrimp-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shrimp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-light.imageset/shrimp-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shrimp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-light.imageset/shuffle-angular-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shuffle-angular.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-light.imageset/shuffle-angular-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shuffle-angular.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-light.imageset/shuffle-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shuffle-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-light.imageset/shuffle-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shuffle-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-light.imageset/shuffle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/shuffle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-light.imageset/shuffle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/shuffle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-light.imageset/sidebar-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sidebar-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-light.imageset/sidebar-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sidebar-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-light.imageset/sidebar-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sidebar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-light.imageset/sidebar-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sidebar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-light.imageset/sigma-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sigma.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-light.imageset/sigma-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sigma.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-light.imageset/sign-in-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sign-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-light.imageset/sign-in-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sign-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-light.imageset/sign-out-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sign-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-light.imageset/sign-out-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sign-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-light.imageset/signature-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/signature.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-light.imageset/signature-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/signature.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-light.imageset/signpost-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/signpost.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-light.imageset/signpost-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/signpost.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-light.imageset/sim-card-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sim-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-light.imageset/sim-card-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sim-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-light.imageset/siren-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/siren.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-light.imageset/siren-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/siren.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-light.imageset/sketch-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sketch-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-light.imageset/sketch-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sketch-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-light.imageset/skip-back-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/skip-back-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-light.imageset/skip-back-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/skip-back-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-light.imageset/skip-back-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/skip-back.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-light.imageset/skip-back-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/skip-back.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-light.imageset/skip-forward-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/skip-forward-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-light.imageset/skip-forward-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/skip-forward-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-light.imageset/skip-forward-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/skip-forward.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-light.imageset/skip-forward-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/skip-forward.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-light.imageset/skull-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/skull.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-light.imageset/skull-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/skull.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-light.imageset/skype-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/skype-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-light.imageset/skype-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/skype-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-light.imageset/slack-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/slack-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-light.imageset/slack-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/slack-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-light.imageset/sliders-horizontal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sliders-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-light.imageset/sliders-horizontal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sliders-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-light.imageset/sliders-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sliders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-light.imageset/sliders-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sliders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-light.imageset/slideshow-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/slideshow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-light.imageset/slideshow-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/slideshow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-light.imageset/smiley-angry-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-angry.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-light.imageset/smiley-angry-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-angry.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-light.imageset/smiley-blank-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-light.imageset/smiley-blank-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-light.imageset/smiley-meh-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-meh.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-light.imageset/smiley-meh-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-meh.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-light.imageset/smiley-melting-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-melting.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-light.imageset/smiley-melting-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-melting.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-light.imageset/smiley-nervous-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-nervous.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-light.imageset/smiley-nervous-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-nervous.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-light.imageset/smiley-sad-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-sad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-light.imageset/smiley-sad-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-sad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-light.imageset/smiley-sticker-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-sticker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-light.imageset/smiley-sticker-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-sticker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-light.imageset/smiley-wink-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-wink.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-light.imageset/smiley-wink-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-wink.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-light.imageset/smiley-x-eyes-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-x-eyes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-light.imageset/smiley-x-eyes-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley-x-eyes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-light.imageset/smiley-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-light.imageset/smiley-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-light.imageset/snapchat-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/snapchat-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-light.imageset/snapchat-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/snapchat-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-light.imageset/sneaker-move-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sneaker-move.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-light.imageset/sneaker-move-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sneaker-move.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-light.imageset/sneaker-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sneaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-light.imageset/sneaker-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sneaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-light.imageset/snowflake-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/snowflake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-light.imageset/snowflake-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/snowflake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-light.imageset/soccer-ball-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/soccer-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-light.imageset/soccer-ball-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/soccer-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-light.imageset/sock-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-light.imageset/sock-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-light.imageset/solar-panel-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/solar-panel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-light.imageset/solar-panel-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/solar-panel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-light.imageset/solar-roof-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/solar-roof.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-light.imageset/solar-roof-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/solar-roof.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-light.imageset/sort-ascending-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sort-ascending.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-light.imageset/sort-ascending-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sort-ascending.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-light.imageset/sort-descending-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sort-descending.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-light.imageset/sort-descending-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sort-descending.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-light.imageset/soundcloud-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/soundcloud-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-light.imageset/soundcloud-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/soundcloud-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-light.imageset/spade-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/spade.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-light.imageset/spade-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/spade.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-light.imageset/sparkle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sparkle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-light.imageset/sparkle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sparkle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-light.imageset/speaker-hifi-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-hifi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-light.imageset/speaker-hifi-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-hifi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-light.imageset/speaker-high-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-light.imageset/speaker-high-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-light.imageset/speaker-low-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-light.imageset/speaker-low-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-light.imageset/speaker-none-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-light.imageset/speaker-none-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-light.imageset/speaker-simple-high-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-simple-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-light.imageset/speaker-simple-high-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-simple-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-light.imageset/speaker-simple-low-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-simple-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-light.imageset/speaker-simple-low-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-simple-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-light.imageset/speaker-simple-none-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-simple-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-light.imageset/speaker-simple-none-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-simple-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-light.imageset/speaker-simple-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-light.imageset/speaker-simple-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-light.imageset/speaker-simple-x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-light.imageset/speaker-simple-x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-light.imageset/speaker-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-light.imageset/speaker-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-light.imageset/speaker-x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-light.imageset/speaker-x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/speaker-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-light.imageset/speedometer-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/speedometer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-light.imageset/speedometer-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/speedometer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-light.imageset/sphere-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sphere.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-light.imageset/sphere-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sphere.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-light.imageset/spinner-ball-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/spinner-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-light.imageset/spinner-ball-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/spinner-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-light.imageset/spinner-gap-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/spinner-gap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-light.imageset/spinner-gap-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/spinner-gap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-light.imageset/spinner-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/spinner.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-light.imageset/spinner-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/spinner.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-light.imageset/spiral-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/spiral.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-light.imageset/spiral-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/spiral.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-light.imageset/split-horizontal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/split-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-light.imageset/split-horizontal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/split-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-light.imageset/split-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/split-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-light.imageset/split-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/split-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-light.imageset/spotify-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/spotify-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-light.imageset/spotify-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/spotify-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-light.imageset/spray-bottle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/spray-bottle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-light.imageset/spray-bottle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/spray-bottle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-light.imageset/square-half-bottom-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/square-half-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-light.imageset/square-half-bottom-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/square-half-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-light.imageset/square-half-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/square-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-light.imageset/square-half-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/square-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-light.imageset/square-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/square-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-light.imageset/square-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/square-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-light.imageset/square-split-horizontal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/square-split-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-light.imageset/square-split-horizontal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/square-split-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-light.imageset/square-split-vertical-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/square-split-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-light.imageset/square-split-vertical-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/square-split-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-light.imageset/square-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-light.imageset/square-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-light.imageset/squares-four-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/squares-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-light.imageset/squares-four-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/squares-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-light.imageset/stack-minus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/stack-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-light.imageset/stack-minus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/stack-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-light.imageset/stack-overflow-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/stack-overflow-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-light.imageset/stack-overflow-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/stack-overflow-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-light.imageset/stack-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/stack-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-light.imageset/stack-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/stack-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-light.imageset/stack-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/stack-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-light.imageset/stack-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/stack-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-light.imageset/stack-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/stack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-light.imageset/stack-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/stack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-light.imageset/stairs-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/stairs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-light.imageset/stairs-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/stairs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-light.imageset/stamp-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/stamp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-light.imageset/stamp-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/stamp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-light.imageset/standard-definition-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/standard-definition.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-light.imageset/standard-definition-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/standard-definition.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-light.imageset/star-and-crescent-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/star-and-crescent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-light.imageset/star-and-crescent-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/star-and-crescent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-light.imageset/star-four-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/star-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-light.imageset/star-four-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/star-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-light.imageset/star-half-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/star-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-light.imageset/star-half-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/star-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-light.imageset/star-of-david-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/star-of-david.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-light.imageset/star-of-david-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/star-of-david.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-light.imageset/star-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-light.imageset/star-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-light.imageset/steam-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/steam-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-light.imageset/steam-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/steam-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-light.imageset/steering-wheel-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/steering-wheel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-light.imageset/steering-wheel-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/steering-wheel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-light.imageset/steps-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/steps.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-light.imageset/steps-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/steps.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-light.imageset/stethoscope-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/stethoscope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-light.imageset/stethoscope-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/stethoscope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-light.imageset/sticker-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sticker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-light.imageset/sticker-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sticker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-light.imageset/stool-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/stool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-light.imageset/stool-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/stool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-light.imageset/stop-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/stop-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-light.imageset/stop-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/stop-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-light.imageset/stop-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/stop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-light.imageset/stop-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/stop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-light.imageset/storefront-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/storefront.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-light.imageset/storefront-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/storefront.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-light.imageset/strategy-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/strategy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-light.imageset/strategy-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/strategy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-light.imageset/stripe-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/stripe-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-light.imageset/stripe-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/stripe-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-light.imageset/student-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/student.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-light.imageset/student-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/student.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-light.imageset/subset-of-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/subset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-light.imageset/subset-of-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/subset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-light.imageset/subset-proper-of-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/subset-proper-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-light.imageset/subset-proper-of-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/subset-proper-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-light.imageset/subtitles-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/subtitles-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-light.imageset/subtitles-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/subtitles-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-light.imageset/subtitles-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/subtitles.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-light.imageset/subtitles-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/subtitles.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-light.imageset/subtract-square-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/subtract-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-light.imageset/subtract-square-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/subtract-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-light.imageset/subtract-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/subtract.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-light.imageset/subtract-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/subtract.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-light.imageset/subway-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/subway.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-light.imageset/subway-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/subway.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-light.imageset/suitcase-rolling-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/suitcase-rolling.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-light.imageset/suitcase-rolling-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/suitcase-rolling.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-light.imageset/suitcase-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/suitcase-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-light.imageset/suitcase-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/suitcase-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-light.imageset/suitcase-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/suitcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-light.imageset/suitcase-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/suitcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-light.imageset/sun-dim-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sun-dim.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-light.imageset/sun-dim-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sun-dim.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-light.imageset/sun-horizon-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sun-horizon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-light.imageset/sun-horizon-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sun-horizon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-light.imageset/sun-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sun.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-light.imageset/sun-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sun.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-light.imageset/sunglasses-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sunglasses.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-light.imageset/sunglasses-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sunglasses.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-light.imageset/superset-of-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/superset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-light.imageset/superset-of-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/superset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-light.imageset/superset-proper-of-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/superset-proper-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-light.imageset/superset-proper-of-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/superset-proper-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-light.imageset/swap-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/swap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-light.imageset/swap-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/swap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-light.imageset/swatches-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/swatches.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-light.imageset/swatches-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/swatches.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-light.imageset/swimming-pool-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/swimming-pool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-light.imageset/swimming-pool-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/swimming-pool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-light.imageset/sword-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/sword.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-light.imageset/sword-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/sword.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-light.imageset/synagogue-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/synagogue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-light.imageset/synagogue-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/synagogue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-light.imageset/syringe-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/syringe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-light.imageset/syringe-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/syringe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-light.imageset/t-shirt-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/t-shirt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-light.imageset/t-shirt-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/t-shirt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-light.imageset/table-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/table.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-light.imageset/table-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/table.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-light.imageset/tabs-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tabs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-light.imageset/tabs-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tabs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-light.imageset/tag-chevron-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tag-chevron.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-light.imageset/tag-chevron-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tag-chevron.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-light.imageset/tag-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-light.imageset/tag-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-light.imageset/tag-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-light.imageset/tag-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-light.imageset/target-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/target.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-light.imageset/target-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/target.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-light.imageset/taxi-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/taxi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-light.imageset/taxi-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/taxi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-light.imageset/tea-bag-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tea-bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-light.imageset/tea-bag-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tea-bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-light.imageset/telegram-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/telegram-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-light.imageset/telegram-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/telegram-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-light.imageset/television-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/television-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-light.imageset/television-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/television-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-light.imageset/television-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/television.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-light.imageset/television-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/television.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-light.imageset/tennis-ball-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tennis-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-light.imageset/tennis-ball-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tennis-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-light.imageset/tent-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-light.imageset/tent-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-light.imageset/terminal-window-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/terminal-window.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-light.imageset/terminal-window-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/terminal-window.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-light.imageset/terminal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/terminal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-light.imageset/terminal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/terminal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-light.imageset/test-tube-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/test-tube.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-light.imageset/test-tube-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/test-tube.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-light.imageset/text-a-underline-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-a-underline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-light.imageset/text-a-underline-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-a-underline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-light.imageset/text-aa-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-aa.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-light.imageset/text-aa-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-aa.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-light.imageset/text-align-center-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-align-center.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-light.imageset/text-align-center-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-align-center.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-light.imageset/text-align-justify-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-align-justify.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-light.imageset/text-align-justify-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-align-justify.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-light.imageset/text-align-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-align-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-light.imageset/text-align-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-align-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-light.imageset/text-align-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-align-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-light.imageset/text-align-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-align-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-light.imageset/text-b-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-b.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-light.imageset/text-b-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-b.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-light.imageset/text-columns-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-columns.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-light.imageset/text-columns-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-columns.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-light.imageset/text-h-five-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-h-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-light.imageset/text-h-five-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-h-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-light.imageset/text-h-four-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-h-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-light.imageset/text-h-four-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-h-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-light.imageset/text-h-one-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-h-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-light.imageset/text-h-one-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-h-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-light.imageset/text-h-six-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-h-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-light.imageset/text-h-six-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-h-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-light.imageset/text-h-three-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-h-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-light.imageset/text-h-three-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-h-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-light.imageset/text-h-two-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-h-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-light.imageset/text-h-two-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-h-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-light.imageset/text-h-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-h.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-light.imageset/text-h-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-h.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-light.imageset/text-indent-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-indent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-light.imageset/text-indent-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-indent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-light.imageset/text-italic-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-italic.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-light.imageset/text-italic-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-italic.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-light.imageset/text-outdent-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-outdent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-light.imageset/text-outdent-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-outdent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-light.imageset/text-strikethrough-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-strikethrough.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-light.imageset/text-strikethrough-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-strikethrough.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-light.imageset/text-subscript-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-subscript.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-light.imageset/text-subscript-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-subscript.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-light.imageset/text-superscript-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-superscript.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-light.imageset/text-superscript-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-superscript.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-light.imageset/text-t-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-t-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-light.imageset/text-t-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-t-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-light.imageset/text-t-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-t.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-light.imageset/text-t-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-t.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-light.imageset/text-underline-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/text-underline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-light.imageset/text-underline-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/text-underline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-light.imageset/textbox-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/textbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-light.imageset/textbox-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/textbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-light.imageset/thermometer-cold-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/thermometer-cold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-light.imageset/thermometer-cold-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/thermometer-cold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-light.imageset/thermometer-hot-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/thermometer-hot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-light.imageset/thermometer-hot-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/thermometer-hot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-light.imageset/thermometer-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/thermometer-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-light.imageset/thermometer-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/thermometer-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-light.imageset/thermometer-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/thermometer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-light.imageset/thermometer-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/thermometer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-light.imageset/threads-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/threads-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-light.imageset/threads-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/threads-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-light.imageset/three-d-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/three-d.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-light.imageset/three-d-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/three-d.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-light.imageset/thumbs-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/thumbs-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-light.imageset/thumbs-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/thumbs-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-light.imageset/thumbs-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/thumbs-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-light.imageset/thumbs-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/thumbs-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-light.imageset/ticket-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/ticket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-light.imageset/ticket-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/ticket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-light.imageset/tidal-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tidal-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-light.imageset/tidal-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tidal-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-light.imageset/tiktok-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tiktok-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-light.imageset/tiktok-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tiktok-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-light.imageset/tilde-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tilde.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-light.imageset/tilde-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tilde.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-light.imageset/timer-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/timer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-light.imageset/timer-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/timer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-light.imageset/tip-jar-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tip-jar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-light.imageset/tip-jar-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tip-jar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-light.imageset/tipi-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tipi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-light.imageset/tipi-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tipi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-light.imageset/tire-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-light.imageset/tire-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-light.imageset/toggle-left-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/toggle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-light.imageset/toggle-left-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/toggle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-light.imageset/toggle-right-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/toggle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-light.imageset/toggle-right-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/toggle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-light.imageset/toilet-paper-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/toilet-paper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-light.imageset/toilet-paper-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/toilet-paper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-light.imageset/toilet-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/toilet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-light.imageset/toilet-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/toilet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-light.imageset/toolbox-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/toolbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-light.imageset/toolbox-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/toolbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-light.imageset/tooth-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-light.imageset/tooth-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-light.imageset/tornado-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tornado.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-light.imageset/tornado-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tornado.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-light.imageset/tote-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tote-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-light.imageset/tote-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tote-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-light.imageset/tote-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tote.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-light.imageset/tote-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tote.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-light.imageset/towel-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/towel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-light.imageset/towel-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/towel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-light.imageset/tractor-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tractor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-light.imageset/tractor-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tractor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-light.imageset/trademark-registered-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/trademark-registered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-light.imageset/trademark-registered-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/trademark-registered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-light.imageset/trademark-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/trademark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-light.imageset/trademark-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/trademark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-light.imageset/traffic-cone-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/traffic-cone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-light.imageset/traffic-cone-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/traffic-cone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-light.imageset/traffic-sign-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/traffic-sign.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-light.imageset/traffic-sign-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/traffic-sign.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-light.imageset/traffic-signal-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/traffic-signal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-light.imageset/traffic-signal-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/traffic-signal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-light.imageset/train-regional-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/train-regional.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-light.imageset/train-regional-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/train-regional.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-light.imageset/train-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/train-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-light.imageset/train-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/train-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-light.imageset/train-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/train.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-light.imageset/train-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/train.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-light.imageset/tram-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-light.imageset/tram-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-light.imageset/translate-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/translate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-light.imageset/translate-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/translate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-light.imageset/trash-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/trash-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-light.imageset/trash-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/trash-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-light.imageset/trash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/trash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-light.imageset/trash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/trash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-light.imageset/archive-tray-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tray-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-light.imageset/archive-tray-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tray-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-light.imageset/tray-arrow-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tray-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-light.imageset/tray-arrow-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tray-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-light.imageset/tray-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tray.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-light.imageset/tray-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tray.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-light.imageset/treasure-chest-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/treasure-chest.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-light.imageset/treasure-chest-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/treasure-chest.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-light.imageset/tree-evergreen-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tree-evergreen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-light.imageset/tree-evergreen-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tree-evergreen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-light.imageset/tree-palm-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tree-palm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-light.imageset/tree-palm-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tree-palm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-light.imageset/tree-structure-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tree-structure.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-light.imageset/tree-structure-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tree-structure.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-light.imageset/tree-view-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tree-view.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-light.imageset/tree-view-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tree-view.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-light.imageset/tree-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tree.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-light.imageset/tree-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tree.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-light.imageset/trend-down-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/trend-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-light.imageset/trend-down-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/trend-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-light.imageset/trend-up-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/trend-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-light.imageset/trend-up-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/trend-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-light.imageset/triangle-dashed-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/triangle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-light.imageset/triangle-dashed-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/triangle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-light.imageset/triangle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/triangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-light.imageset/triangle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/triangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-light.imageset/trolley-suitcase-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/trolley-suitcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-light.imageset/trolley-suitcase-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/trolley-suitcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-light.imageset/trolley-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/trolley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-light.imageset/trolley-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/trolley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-light.imageset/trophy-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/trophy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-light.imageset/trophy-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/trophy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-light.imageset/truck-trailer-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/truck-trailer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-light.imageset/truck-trailer-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/truck-trailer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-light.imageset/truck-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/truck.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-light.imageset/truck-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/truck.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-light.imageset/tumblr-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/tumblr-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-light.imageset/tumblr-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/tumblr-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-light.imageset/twitch-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/twitch-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-light.imageset/twitch-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/twitch-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-light.imageset/twitter-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/twitter-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-light.imageset/twitter-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/twitter-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-light.imageset/umbrella-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/umbrella-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-light.imageset/umbrella-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/umbrella-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-light.imageset/umbrella-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/umbrella.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-light.imageset/umbrella-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/umbrella.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-light.imageset/union-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/union.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-light.imageset/union-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/union.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-light.imageset/unite-square-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/unite-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-light.imageset/unite-square-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/unite-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-light.imageset/unite-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/unite.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-light.imageset/unite-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/unite.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-light.imageset/upload-simple-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/upload-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-light.imageset/upload-simple-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/upload-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-light.imageset/upload-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/upload.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-light.imageset/upload-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/upload.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-light.imageset/usb-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/usb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-light.imageset/usb-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/usb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-light.imageset/user-check-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-light.imageset/user-check-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-light.imageset/user-circle-check-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-circle-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-light.imageset/user-circle-check-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-circle-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-light.imageset/user-circle-dashed-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-circle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-light.imageset/user-circle-dashed-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-circle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-light.imageset/user-circle-gear-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-circle-gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-light.imageset/user-circle-gear-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-circle-gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-light.imageset/user-circle-minus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-circle-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-light.imageset/user-circle-minus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-circle-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-light.imageset/user-circle-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-circle-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-light.imageset/user-circle-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-circle-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-light.imageset/user-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-light.imageset/user-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-light.imageset/user-focus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-focus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-light.imageset/user-focus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-focus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-light.imageset/user-gear-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-light.imageset/user-gear-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-light.imageset/user-list-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-light.imageset/user-list-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-light.imageset/user-minus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-light.imageset/user-minus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-light.imageset/user-plus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-light.imageset/user-plus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-light.imageset/user-rectangle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-rectangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-light.imageset/user-rectangle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-rectangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-light.imageset/user-sound-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-sound.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-light.imageset/user-sound-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-sound.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-light.imageset/user-square-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-light.imageset/user-square-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-light.imageset/user-switch-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user-switch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-light.imageset/user-switch-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user-switch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-light.imageset/user-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-light.imageset/user-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-light.imageset/users-four-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/users-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-light.imageset/users-four-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/users-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-light.imageset/users-three-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/users-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-light.imageset/users-three-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/users-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-light.imageset/users-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/users.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-light.imageset/users-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/users.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-light.imageset/van-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/van.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-light.imageset/van-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/van.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-light.imageset/vault-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/vault.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-light.imageset/vault-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/vault.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-light.imageset/vector-three-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/vector-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-light.imageset/vector-three-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/vector-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-light.imageset/vector-two-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/vector-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-light.imageset/vector-two-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/vector-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-light.imageset/vibrate-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/vibrate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-light.imageset/vibrate-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/vibrate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-light.imageset/video-camera-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/video-camera-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-light.imageset/video-camera-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/video-camera-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-light.imageset/video-camera-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/video-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-light.imageset/video-camera-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/video-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-light.imageset/video-conference-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/video-conference.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-light.imageset/video-conference-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/video-conference.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-light.imageset/video-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/video.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-light.imageset/video-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/video.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-light.imageset/vignette-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/vignette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-light.imageset/vignette-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/vignette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-light.imageset/vinyl-record-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/vinyl-record.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-light.imageset/vinyl-record-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/vinyl-record.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-light.imageset/virtual-reality-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/virtual-reality.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-light.imageset/virtual-reality-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/virtual-reality.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-light.imageset/virus-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/virus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-light.imageset/virus-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/virus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-light.imageset/visor-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/visor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-light.imageset/visor-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/visor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-light.imageset/voicemail-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/voicemail.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-light.imageset/voicemail-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/voicemail.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-light.imageset/volleyball-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/volleyball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-light.imageset/volleyball-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/volleyball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-light.imageset/wall-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wall.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-light.imageset/wall-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wall.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-light.imageset/wallet-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wallet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-light.imageset/wallet-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wallet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-light.imageset/warehouse-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/warehouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-light.imageset/warehouse-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/warehouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-light.imageset/warning-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/warning-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-light.imageset/warning-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/warning-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-light.imageset/warning-diamond-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/warning-diamond.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-light.imageset/warning-diamond-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/warning-diamond.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-light.imageset/warning-octagon-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/warning-octagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-light.imageset/warning-octagon-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/warning-octagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-light.imageset/warning-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-light.imageset/warning-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-light.imageset/washing-machine-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/washing-machine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-light.imageset/washing-machine-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/washing-machine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-light.imageset/watch-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/watch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-light.imageset/watch-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/watch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-light.imageset/wave-sawtooth-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wave-sawtooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-light.imageset/wave-sawtooth-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wave-sawtooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-light.imageset/wave-sine-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wave-sine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-light.imageset/wave-sine-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wave-sine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-light.imageset/wave-square-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wave-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-light.imageset/wave-square-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wave-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-light.imageset/wave-triangle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wave-triangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-light.imageset/wave-triangle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wave-triangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-light.imageset/waveform-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/waveform-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-light.imageset/waveform-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/waveform-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-light.imageset/waveform-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/waveform.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-light.imageset/waveform-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/waveform.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-light.imageset/waves-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/waves.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-light.imageset/waves-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/waves.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-light.imageset/webcam-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/webcam-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-light.imageset/webcam-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/webcam-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-light.imageset/webcam-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/webcam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-light.imageset/webcam-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/webcam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-light.imageset/webhooks-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/webhooks-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-light.imageset/webhooks-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/webhooks-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-light.imageset/wechat-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wechat-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-light.imageset/wechat-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wechat-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-light.imageset/whatsapp-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/whatsapp-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-light.imageset/whatsapp-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/whatsapp-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-light.imageset/wheelchair-motion-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wheelchair-motion.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-light.imageset/wheelchair-motion-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wheelchair-motion.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-light.imageset/wheelchair-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wheelchair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-light.imageset/wheelchair-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wheelchair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-light.imageset/wifi-high-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wifi-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-light.imageset/wifi-high-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wifi-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-light.imageset/wifi-low-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wifi-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-light.imageset/wifi-low-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wifi-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-light.imageset/wifi-medium-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wifi-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-light.imageset/wifi-medium-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wifi-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-light.imageset/wifi-none-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wifi-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-light.imageset/wifi-none-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wifi-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-light.imageset/wifi-slash-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wifi-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-light.imageset/wifi-slash-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wifi-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-light.imageset/wifi-x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wifi-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-light.imageset/wifi-x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wifi-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-light.imageset/wind-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wind.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-light.imageset/wind-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wind.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-light.imageset/windmill-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/windmill.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-light.imageset/windmill-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/windmill.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-light.imageset/windows-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/windows-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-light.imageset/windows-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/windows-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-light.imageset/wine-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-light.imageset/wine-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-light.imageset/wrench-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/wrench.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-light.imageset/wrench-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/wrench.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-light.imageset/x-circle-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/x-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-light.imageset/x-circle-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/x-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-light.imageset/x-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/x-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-light.imageset/x-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/x-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-light.imageset/x-square-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/x-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-light.imageset/x-square-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/x-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-light.imageset/x-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-light.imageset/x-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-light.imageset/yarn-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/yarn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-light.imageset/yarn-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/yarn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-light.imageset/yin-yang-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/yin-yang.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-light.imageset/yin-yang-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/yin-yang.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-light.imageset/youtube-logo-light.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/light/youtube-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-light.imageset/youtube-logo-light.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/light/youtube-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn.imageset/acorn.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/acorn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn.imageset/acorn.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/acorn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs.imageset/address-book-tabs.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/address-book-tabs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs.imageset/address-book-tabs.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/address-book-tabs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book.imageset/address-book.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/address-book.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book.imageset/address-book.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/address-book.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control.imageset/air-traffic-control.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/air-traffic-control.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control.imageset/air-traffic-control.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/air-traffic-control.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight.imageset/airplane-in-flight.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/airplane-in-flight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight.imageset/airplane-in-flight.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/airplane-in-flight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing.imageset/airplane-landing.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/airplane-landing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing.imageset/airplane-landing.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/airplane-landing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff.imageset/airplane-takeoff.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/airplane-takeoff.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff.imageset/airplane-takeoff.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/airplane-takeoff.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing.imageset/airplane-taxiing.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/airplane-taxiing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing.imageset/airplane-taxiing.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/airplane-taxiing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt.imageset/airplane-tilt.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/airplane-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt.imageset/airplane-tilt.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/airplane-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane.imageset/airplane.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/airplane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane.imageset/airplane.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/airplane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay.imageset/airplay.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/airplay.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay.imageset/airplay.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/airplay.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm.imageset/alarm.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/alarm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm.imageset/alarm.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/alarm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien.imageset/alien.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/alien.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien.imageset/alien.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/alien.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple.imageset/align-bottom-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-bottom-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple.imageset/align-bottom-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-bottom-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom.imageset/align-bottom.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom.imageset/align-bottom.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple.imageset/align-center-horizontal-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-center-horizontal-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple.imageset/align-center-horizontal-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-center-horizontal-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal.imageset/align-center-horizontal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-center-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal.imageset/align-center-horizontal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-center-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple.imageset/align-center-vertical-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-center-vertical-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple.imageset/align-center-vertical-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-center-vertical-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical.imageset/align-center-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-center-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical.imageset/align-center-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-center-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple.imageset/align-left-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-left-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple.imageset/align-left-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-left-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left.imageset/align-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left.imageset/align-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple.imageset/align-right-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-right-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple.imageset/align-right-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-right-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right.imageset/align-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right.imageset/align-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple.imageset/align-top-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-top-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple.imageset/align-top-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-top-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top.imageset/align-top.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-top.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top.imageset/align-top.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/align-top.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo.imageset/amazon-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/amazon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo.imageset/amazon-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/amazon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance.imageset/ambulance.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/ambulance.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance.imageset/ambulance.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/ambulance.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple.imageset/anchor-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/anchor-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple.imageset/anchor-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/anchor-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor.imageset/anchor.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/anchor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor.imageset/anchor.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/anchor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo.imageset/android-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/android-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo.imageset/android-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/android-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle.imageset/angle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/angle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle.imageset/angle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/angle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo.imageset/angular-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/angular-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo.imageset/angular-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/angular-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture.imageset/aperture.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/aperture.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture.imageset/aperture.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/aperture.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo.imageset/app-store-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/app-store-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo.imageset/app-store-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/app-store-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window.imageset/app-window.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/app-window.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window.imageset/app-window.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/app-window.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo.imageset/apple-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/apple-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo.imageset/apple-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/apple-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo.imageset/apple-podcasts-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/apple-podcasts-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo.imageset/apple-podcasts-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/apple-podcasts-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals.imageset/approximate-equals.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/approximate-equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals.imageset/approximate-equals.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/approximate-equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive.imageset/archive.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/archive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive.imageset/archive.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/archive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair.imageset/armchair.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/armchair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair.imageset/armchair.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/armchair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left.imageset/arrow-arc-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-arc-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left.imageset/arrow-arc-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-arc-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right.imageset/arrow-arc-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-arc-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right.imageset/arrow-arc-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-arc-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left.imageset/arrow-bend-double-up-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-double-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left.imageset/arrow-bend-double-up-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-double-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right.imageset/arrow-bend-double-up-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-double-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right.imageset/arrow-bend-double-up-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-double-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left.imageset/arrow-bend-down-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left.imageset/arrow-bend-down-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right.imageset/arrow-bend-down-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right.imageset/arrow-bend-down-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down.imageset/arrow-bend-left-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down.imageset/arrow-bend-left-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up.imageset/arrow-bend-left-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up.imageset/arrow-bend-left-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down.imageset/arrow-bend-right-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down.imageset/arrow-bend-right-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up.imageset/arrow-bend-right-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up.imageset/arrow-bend-right-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left.imageset/arrow-bend-up-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left.imageset/arrow-bend-up-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right.imageset/arrow-bend-up-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right.imageset/arrow-bend-up-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-bend-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left.imageset/arrow-circle-down-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left.imageset/arrow-circle-down-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right.imageset/arrow-circle-down-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right.imageset/arrow-circle-down-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down.imageset/arrow-circle-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down.imageset/arrow-circle-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left.imageset/arrow-circle-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left.imageset/arrow-circle-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right.imageset/arrow-circle-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right.imageset/arrow-circle-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left.imageset/arrow-circle-up-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left.imageset/arrow-circle-up-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right.imageset/arrow-circle-up-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right.imageset/arrow-circle-up-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up.imageset/arrow-circle-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up.imageset/arrow-circle-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-circle-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise.imageset/arrow-clockwise.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise.imageset/arrow-clockwise.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise.imageset/arrow-counter-clockwise.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise.imageset/arrow-counter-clockwise.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left.imageset/arrow-down-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left.imageset/arrow-down-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right.imageset/arrow-down-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right.imageset/arrow-down-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down.imageset/arrow-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down.imageset/arrow-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left.imageset/arrow-elbow-down-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left.imageset/arrow-elbow-down-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right.imageset/arrow-elbow-down-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right.imageset/arrow-elbow-down-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down.imageset/arrow-elbow-left-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down.imageset/arrow-elbow-left-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up.imageset/arrow-elbow-left-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up.imageset/arrow-elbow-left-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left.imageset/arrow-elbow-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left.imageset/arrow-elbow-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down.imageset/arrow-elbow-right-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down.imageset/arrow-elbow-right-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up.imageset/arrow-elbow-right-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up.imageset/arrow-elbow-right-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right.imageset/arrow-elbow-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right.imageset/arrow-elbow-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left.imageset/arrow-elbow-up-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left.imageset/arrow-elbow-up-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right.imageset/arrow-elbow-up-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right.imageset/arrow-elbow-up-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-elbow-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down.imageset/arrow-fat-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down.imageset/arrow-fat-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left.imageset/arrow-fat-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left.imageset/arrow-fat-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down.imageset/arrow-fat-line-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down.imageset/arrow-fat-line-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left.imageset/arrow-fat-line-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left.imageset/arrow-fat-line-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right.imageset/arrow-fat-line-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right.imageset/arrow-fat-line-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up.imageset/arrow-fat-line-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up.imageset/arrow-fat-line-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down.imageset/arrow-fat-lines-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-lines-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down.imageset/arrow-fat-lines-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-lines-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left.imageset/arrow-fat-lines-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-lines-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left.imageset/arrow-fat-lines-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-lines-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right.imageset/arrow-fat-lines-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-lines-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right.imageset/arrow-fat-lines-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-lines-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up.imageset/arrow-fat-lines-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-lines-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up.imageset/arrow-fat-lines-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-lines-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right.imageset/arrow-fat-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right.imageset/arrow-fat-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up.imageset/arrow-fat-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up.imageset/arrow-fat-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-fat-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left.imageset/arrow-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left.imageset/arrow-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left.imageset/arrow-line-down-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left.imageset/arrow-line-down-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right.imageset/arrow-line-down-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right.imageset/arrow-line-down-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down.imageset/arrow-line-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down.imageset/arrow-line-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left.imageset/arrow-line-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left.imageset/arrow-line-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right.imageset/arrow-line-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right.imageset/arrow-line-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left.imageset/arrow-line-up-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left.imageset/arrow-line-up-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right.imageset/arrow-line-up-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right.imageset/arrow-line-up-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up.imageset/arrow-line-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up.imageset/arrow-line-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right.imageset/arrow-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right.imageset/arrow-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left.imageset/arrow-square-down-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left.imageset/arrow-square-down-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right.imageset/arrow-square-down-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right.imageset/arrow-square-down-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down.imageset/arrow-square-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down.imageset/arrow-square-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in.imageset/arrow-square-in.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in.imageset/arrow-square-in.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left.imageset/arrow-square-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left.imageset/arrow-square-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out.imageset/arrow-square-out.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out.imageset/arrow-square-out.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right.imageset/arrow-square-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right.imageset/arrow-square-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left.imageset/arrow-square-up-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left.imageset/arrow-square-up-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right.imageset/arrow-square-up-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right.imageset/arrow-square-up-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up.imageset/arrow-square-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up.imageset/arrow-square-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-square-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left.imageset/arrow-u-down-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left.imageset/arrow-u-down-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right.imageset/arrow-u-down-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right.imageset/arrow-u-down-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down.imageset/arrow-u-left-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down.imageset/arrow-u-left-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up.imageset/arrow-u-left-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up.imageset/arrow-u-left-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down.imageset/arrow-u-right-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down.imageset/arrow-u-right-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up.imageset/arrow-u-right-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up.imageset/arrow-u-right-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left.imageset/arrow-u-up-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left.imageset/arrow-u-up-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right.imageset/arrow-u-up-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right.imageset/arrow-u-up-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-u-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left.imageset/arrow-up-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left.imageset/arrow-up-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right.imageset/arrow-up-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right.imageset/arrow-up-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up.imageset/arrow-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up.imageset/arrow-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise.imageset/arrows-clockwise.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise.imageset/arrows-clockwise.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise.imageset/arrows-counter-clockwise.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise.imageset/arrows-counter-clockwise.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up.imageset/arrows-down-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-down-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up.imageset/arrows-down-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-down-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal.imageset/arrows-horizontal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal.imageset/arrows-horizontal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal.imageset/arrows-in-cardinal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-in-cardinal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal.imageset/arrows-in-cardinal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-in-cardinal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal.imageset/arrows-in-line-horizontal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-in-line-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal.imageset/arrows-in-line-horizontal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-in-line-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical.imageset/arrows-in-line-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-in-line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical.imageset/arrows-in-line-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-in-line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple.imageset/arrows-in-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-in-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple.imageset/arrows-in-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-in-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in.imageset/arrows-in.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in.imageset/arrows-in.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right.imageset/arrows-left-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-left-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right.imageset/arrows-left-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-left-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge.imageset/arrows-merge.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-merge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge.imageset/arrows-merge.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-merge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal.imageset/arrows-out-cardinal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-out-cardinal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal.imageset/arrows-out-cardinal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-out-cardinal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal.imageset/arrows-out-line-horizontal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-out-line-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal.imageset/arrows-out-line-horizontal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-out-line-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical.imageset/arrows-out-line-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-out-line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical.imageset/arrows-out-line-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-out-line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple.imageset/arrows-out-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-out-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple.imageset/arrows-out-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-out-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out.imageset/arrows-out.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out.imageset/arrows-out.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split.imageset/arrows-split.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-split.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split.imageset/arrows-split.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-split.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical.imageset/arrows-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical.imageset/arrows-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/arrows-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium.imageset/article-medium.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/article-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium.imageset/article-medium.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/article-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times.imageset/article-ny-times.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/article-ny-times.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times.imageset/article-ny-times.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/article-ny-times.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article.imageset/article.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/article.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article.imageset/article.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/article.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius.imageset/asclepius.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/asclepius.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius.imageset/asclepius.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/asclepius.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple.imageset/asterisk-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/asterisk-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple.imageset/asterisk-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/asterisk-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk.imageset/asterisk.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/asterisk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk.imageset/asterisk.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/asterisk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at.imageset/at.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/at.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at.imageset/at.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/at.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom.imageset/atom.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/atom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom.imageset/atom.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/atom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado.imageset/avocado.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/avocado.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado.imageset/avocado.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/avocado.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe.imageset/axe.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/axe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe.imageset/axe.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/axe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage.imageset/baby-carriage.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/baby-carriage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage.imageset/baby-carriage.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/baby-carriage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby.imageset/baby.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/baby.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby.imageset/baby.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/baby.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack.imageset/backpack.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/backpack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack.imageset/backpack.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/backpack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace.imageset/backspace.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/backspace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace.imageset/backspace.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/backspace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple.imageset/bag-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple.imageset/bag-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag.imageset/bag.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag.imageset/bag.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon.imageset/balloon.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/balloon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon.imageset/balloon.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/balloon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids.imageset/bandaids.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bandaids.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids.imageset/bandaids.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bandaids.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank.imageset/bank.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank.imageset/bank.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell.imageset/barbell.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/barbell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell.imageset/barbell.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/barbell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode.imageset/barcode.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/barcode.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode.imageset/barcode.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/barcode.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn.imageset/barn.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/barn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn.imageset/barn.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/barn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade.imageset/barricade.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/barricade.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade.imageset/barricade.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/barricade.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap.imageset/baseball-cap.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/baseball-cap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap.imageset/baseball-cap.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/baseball-cap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet.imageset/baseball-helmet.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/baseball-helmet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet.imageset/baseball-helmet.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/baseball-helmet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball.imageset/baseball.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/baseball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball.imageset/baseball.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/baseball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket.imageset/basket.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/basket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket.imageset/basket.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/basket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball.imageset/basketball.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/basketball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball.imageset/basketball.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/basketball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub.imageset/bathtub.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bathtub.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub.imageset/bathtub.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bathtub.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical.imageset/battery-charging-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-charging-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical.imageset/battery-charging-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-charging-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging.imageset/battery-charging.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-charging.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging.imageset/battery-charging.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-charging.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-fill.imageset/battery-empty-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-fill.imageset/battery-empty-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full.imageset/battery-full.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full.imageset/battery-full.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high.imageset/battery-high.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high.imageset/battery-high.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low.imageset/battery-low.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low.imageset/battery-low.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium.imageset/battery-medium.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium.imageset/battery-medium.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical.imageset/battery-plus-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-plus-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical.imageset/battery-plus-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-plus-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus.imageset/battery-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus.imageset/battery-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-fill.imageset/battery-vertical-empty-fill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-vertical-empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-fill.imageset/battery-vertical-empty-fill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-vertical-empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full.imageset/battery-vertical-full.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-vertical-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full.imageset/battery-vertical-full.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-vertical-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high.imageset/battery-vertical-high.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-vertical-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high.imageset/battery-vertical-high.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-vertical-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low.imageset/battery-vertical-low.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-vertical-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low.imageset/battery-vertical-low.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-vertical-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium.imageset/battery-vertical-medium.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-vertical-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium.imageset/battery-vertical-medium.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-vertical-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical.imageset/battery-warning-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-warning-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical.imageset/battery-warning-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-warning-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning.imageset/battery-warning.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning.imageset/battery-warning.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/battery-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball.imageset/beach-ball.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/beach-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball.imageset/beach-ball.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/beach-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie.imageset/beanie.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/beanie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie.imageset/beanie.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/beanie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed.imageset/bed.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed.imageset/bed.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle.imageset/beer-bottle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/beer-bottle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle.imageset/beer-bottle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/beer-bottle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein.imageset/beer-stein.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/beer-stein.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein.imageset/beer-stein.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/beer-stein.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo.imageset/behance-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/behance-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo.imageset/behance-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/behance-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing.imageset/bell-ringing.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell-ringing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing.imageset/bell-ringing.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell-ringing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing.imageset/bell-simple-ringing.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell-simple-ringing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing.imageset/bell-simple-ringing.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell-simple-ringing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash.imageset/bell-simple-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash.imageset/bell-simple-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z.imageset/bell-simple-z.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell-simple-z.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z.imageset/bell-simple-z.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell-simple-z.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple.imageset/bell-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple.imageset/bell-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash.imageset/bell-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash.imageset/bell-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z.imageset/bell-z.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell-z.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z.imageset/bell-z.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell-z.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell.imageset/bell.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell.imageset/bell.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt.imageset/belt.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/belt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt.imageset/belt.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/belt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve.imageset/bezier-curve.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bezier-curve.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve.imageset/bezier-curve.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bezier-curve.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle.imageset/bicycle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bicycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle.imageset/bicycle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bicycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary.imageset/binary.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/binary.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary.imageset/binary.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/binary.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars.imageset/binoculars.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/binoculars.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars.imageset/binoculars.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/binoculars.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard.imageset/biohazard.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/biohazard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard.imageset/biohazard.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/biohazard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird.imageset/bird.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bird.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird.imageset/bird.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bird.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint.imageset/blueprint.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/blueprint.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint.imageset/blueprint.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/blueprint.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected.imageset/bluetooth-connected.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bluetooth-connected.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected.imageset/bluetooth-connected.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bluetooth-connected.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash.imageset/bluetooth-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bluetooth-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash.imageset/bluetooth-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bluetooth-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x.imageset/bluetooth-x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bluetooth-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x.imageset/bluetooth-x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bluetooth-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth.imageset/bluetooth.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bluetooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth.imageset/bluetooth.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bluetooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat.imageset/boat.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/boat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat.imageset/boat.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/boat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb.imageset/bomb.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bomb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb.imageset/bomb.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bomb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone.imageset/bone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone.imageset/bone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark.imageset/book-bookmark.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/book-bookmark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark.imageset/book-bookmark.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/book-bookmark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text.imageset/book-open-text.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/book-open-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text.imageset/book-open-text.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/book-open-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user.imageset/book-open-user.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/book-open-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user.imageset/book-open-user.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/book-open-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open.imageset/book-open.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/book-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open.imageset/book-open.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/book-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book.imageset/book.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/book.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book.imageset/book.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/book.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple.imageset/bookmark-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bookmark-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple.imageset/bookmark-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bookmark-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark.imageset/bookmark.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bookmark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark.imageset/bookmark.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bookmark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple.imageset/bookmarks-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bookmarks-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple.imageset/bookmarks-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bookmarks-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks.imageset/bookmarks.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bookmarks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks.imageset/bookmarks.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bookmarks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books.imageset/books.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/books.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books.imageset/books.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/books.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot.imageset/boot.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/boot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot.imageset/boot.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/boot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules.imageset/boules.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/boules.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules.imageset/boules.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/boules.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box.imageset/bounding-box.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bounding-box.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box.imageset/bounding-box.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bounding-box.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food.imageset/bowl-food.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bowl-food.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food.imageset/bowl-food.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bowl-food.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam.imageset/bowl-steam.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bowl-steam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam.imageset/bowl-steam.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bowl-steam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball.imageset/bowling-ball.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bowling-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball.imageset/bowling-ball.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bowling-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down.imageset/box-arrow-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/box-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-down.imageset/box-arrow-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/box-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up.imageset/box-arrow-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/box-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up.imageset/box-arrow-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/box-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove.imageset/boxing-glove.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/boxing-glove.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove.imageset/boxing-glove.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/boxing-glove.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle.imageset/brackets-angle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/brackets-angle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle.imageset/brackets-angle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/brackets-angle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly.imageset/brackets-curly.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/brackets-curly.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly.imageset/brackets-curly.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/brackets-curly.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round.imageset/brackets-round.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/brackets-round.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round.imageset/brackets-round.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/brackets-round.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square.imageset/brackets-square.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/brackets-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square.imageset/brackets-square.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/brackets-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain.imageset/brain.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/brain.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain.imageset/brain.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/brain.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy.imageset/brandy.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/brandy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy.imageset/brandy.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/brandy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread.imageset/bread.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bread.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread.imageset/bread.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bread.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge.imageset/bridge.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bridge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge.imageset/bridge.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bridge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal.imageset/briefcase-metal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/briefcase-metal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal.imageset/briefcase-metal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/briefcase-metal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase.imageset/briefcase.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/briefcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase.imageset/briefcase.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/briefcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast.imageset/broadcast.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/broadcast.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast.imageset/broadcast.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/broadcast.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom.imageset/broom.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/broom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom.imageset/broom.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/broom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser.imageset/browser.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/browser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser.imageset/browser.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/browser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers.imageset/browsers.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/browsers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers.imageset/browsers.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/browsers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle.imageset/bug-beetle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bug-beetle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle.imageset/bug-beetle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bug-beetle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid.imageset/bug-droid.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bug-droid.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid.imageset/bug-droid.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bug-droid.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug.imageset/bug.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug.imageset/bug.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment.imageset/building-apartment.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/building-apartment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment.imageset/building-apartment.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/building-apartment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office.imageset/building-office.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/building-office.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office.imageset/building-office.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/building-office.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building.imageset/building.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/building.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building.imageset/building.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/building.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings.imageset/buildings.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/buildings.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings.imageset/buildings.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/buildings.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer.imageset/bulldozer.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bulldozer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer.imageset/bulldozer.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bulldozer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus.imageset/bus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/bus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus.imageset/bus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/bus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly.imageset/butterfly.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/butterfly.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly.imageset/butterfly.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/butterfly.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car.imageset/cable-car.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cable-car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car.imageset/cable-car.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cable-car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus.imageset/cactus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cactus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus.imageset/cactus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cactus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake.imageset/cake.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake.imageset/cake.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator.imageset/calculator.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/calculator.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator.imageset/calculator.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/calculator.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank.imageset/calendar-blank.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank.imageset/calendar-blank.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check.imageset/calendar-check.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check.imageset/calendar-check.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot.imageset/calendar-dot.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-dot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot.imageset/calendar-dot.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-dot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots.imageset/calendar-dots.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots.imageset/calendar-dots.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart.imageset/calendar-heart.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart.imageset/calendar-heart.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus.imageset/calendar-minus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus.imageset/calendar-minus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus.imageset/calendar-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus.imageset/calendar-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash.imageset/calendar-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash.imageset/calendar-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star.imageset/calendar-star.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star.imageset/calendar-star.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x.imageset/calendar-x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x.imageset/calendar-x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar.imageset/calendar.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar.imageset/calendar.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/calendar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell.imageset/call-bell.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/call-bell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell.imageset/call-bell.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/call-bell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus.imageset/camera-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/camera-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus.imageset/camera-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/camera-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate.imageset/camera-rotate.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/camera-rotate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate.imageset/camera-rotate.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/camera-rotate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash.imageset/camera-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/camera-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash.imageset/camera-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/camera-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera.imageset/camera.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera.imageset/camera.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire.imageset/campfire.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/campfire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire.imageset/campfire.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/campfire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery.imageset/car-battery.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/car-battery.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery.imageset/car-battery.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/car-battery.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile.imageset/car-profile.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/car-profile.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile.imageset/car-profile.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/car-profile.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple.imageset/car-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/car-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple.imageset/car-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/car-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car.imageset/car.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car.imageset/car.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder.imageset/cardholder.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cardholder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder.imageset/cardholder.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cardholder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three.imageset/cards-three.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cards-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three.imageset/cards-three.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cards-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards.imageset/cards.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cards.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards.imageset/cards.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cards.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down.imageset/caret-circle-double-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-double-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down.imageset/caret-circle-double-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-double-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left.imageset/caret-circle-double-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-double-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left.imageset/caret-circle-double-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-double-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right.imageset/caret-circle-double-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-double-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right.imageset/caret-circle-double-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-double-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up.imageset/caret-circle-double-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-double-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up.imageset/caret-circle-double-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-double-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down.imageset/caret-circle-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down.imageset/caret-circle-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left.imageset/caret-circle-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left.imageset/caret-circle-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right.imageset/caret-circle-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right.imageset/caret-circle-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down.imageset/caret-circle-up-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-up-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down.imageset/caret-circle-up-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-up-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up.imageset/caret-circle-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up.imageset/caret-circle-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-circle-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down.imageset/caret-double-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-double-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down.imageset/caret-double-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-double-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left.imageset/caret-double-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-double-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left.imageset/caret-double-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-double-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right.imageset/caret-double-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-double-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right.imageset/caret-double-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-double-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up.imageset/caret-double-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-double-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up.imageset/caret-double-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-double-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down.imageset/caret-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down.imageset/caret-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left.imageset/caret-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left.imageset/caret-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down.imageset/caret-line-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down.imageset/caret-line-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left.imageset/caret-line-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left.imageset/caret-line-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right.imageset/caret-line-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right.imageset/caret-line-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up.imageset/caret-line-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up.imageset/caret-line-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right.imageset/caret-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right.imageset/caret-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down.imageset/caret-up-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-up-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down.imageset/caret-up-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-up-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up.imageset/caret-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up.imageset/caret-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/caret-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot.imageset/carrot.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/carrot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot.imageset/carrot.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/carrot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register.imageset/cash-register.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cash-register.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register.imageset/cash-register.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cash-register.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape.imageset/cassette-tape.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cassette-tape.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape.imageset/cassette-tape.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cassette-tape.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret.imageset/castle-turret.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/castle-turret.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret.imageset/castle-turret.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/castle-turret.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat.imageset/cat.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat.imageset/cat.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full.imageset/cell-signal-full.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-signal-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full.imageset/cell-signal-full.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-signal-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high.imageset/cell-signal-high.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-signal-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high.imageset/cell-signal-high.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-signal-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low.imageset/cell-signal-low.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-signal-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low.imageset/cell-signal-low.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-signal-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium.imageset/cell-signal-medium.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-signal-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium.imageset/cell-signal-medium.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-signal-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none.imageset/cell-signal-none.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-signal-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none.imageset/cell-signal-none.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-signal-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash.imageset/cell-signal-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-signal-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash.imageset/cell-signal-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-signal-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x.imageset/cell-signal-x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-signal-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x.imageset/cell-signal-x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-signal-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower.imageset/cell-tower.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower.imageset/cell-tower.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cell-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate.imageset/certificate.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/certificate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate.imageset/certificate.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/certificate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair.imageset/chair.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair.imageset/chair.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple.imageset/chalkboard-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chalkboard-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple.imageset/chalkboard-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chalkboard-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher.imageset/chalkboard-teacher.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chalkboard-teacher.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher.imageset/chalkboard-teacher.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chalkboard-teacher.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard.imageset/chalkboard.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chalkboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard.imageset/chalkboard.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chalkboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne.imageset/champagne.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/champagne.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne.imageset/champagne.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/champagne.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station.imageset/charging-station.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/charging-station.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station.imageset/charging-station.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/charging-station.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal.imageset/chart-bar-horizontal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-bar-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal.imageset/chart-bar-horizontal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-bar-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar.imageset/chart-bar.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-bar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar.imageset/chart-bar.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-bar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut.imageset/chart-donut.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-donut.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut.imageset/chart-donut.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-donut.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down.imageset/chart-line-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down.imageset/chart-line-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up.imageset/chart-line-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up.imageset/chart-line-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line.imageset/chart-line.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line.imageset/chart-line.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice.imageset/chart-pie-slice.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-pie-slice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice.imageset/chart-pie-slice.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-pie-slice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie.imageset/chart-pie.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-pie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie.imageset/chart-pie.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-pie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar.imageset/chart-polar.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-polar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar.imageset/chart-polar.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-polar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter.imageset/chart-scatter.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-scatter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter.imageset/chart-scatter.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chart-scatter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots.imageset/chat-centered-dots.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-centered-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots.imageset/chat-centered-dots.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-centered-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash.imageset/chat-centered-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-centered-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash.imageset/chat-centered-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-centered-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text.imageset/chat-centered-text.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-centered-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text.imageset/chat-centered-text.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-centered-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered.imageset/chat-centered.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-centered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered.imageset/chat-centered.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-centered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots.imageset/chat-circle-dots.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-circle-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots.imageset/chat-circle-dots.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-circle-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash.imageset/chat-circle-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-circle-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash.imageset/chat-circle-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-circle-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text.imageset/chat-circle-text.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-circle-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text.imageset/chat-circle-text.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-circle-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle.imageset/chat-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle.imageset/chat-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots.imageset/chat-dots.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots.imageset/chat-dots.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash.imageset/chat-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash.imageset/chat-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots.imageset/chat-teardrop-dots.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-teardrop-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots.imageset/chat-teardrop-dots.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-teardrop-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash.imageset/chat-teardrop-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-teardrop-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash.imageset/chat-teardrop-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-teardrop-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text.imageset/chat-teardrop-text.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-teardrop-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text.imageset/chat-teardrop-text.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-teardrop-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop.imageset/chat-teardrop.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-teardrop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop.imageset/chat-teardrop.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-teardrop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text.imageset/chat-text.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text.imageset/chat-text.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat.imageset/chat.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat.imageset/chat.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle.imageset/chats-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chats-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle.imageset/chats-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chats-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop.imageset/chats-teardrop.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chats-teardrop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop.imageset/chats-teardrop.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chats-teardrop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats.imageset/chats.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chats.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats.imageset/chats.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chats.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle.imageset/check-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/check-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle.imageset/check-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/check-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat.imageset/check-fat.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/check-fat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat.imageset/check-fat.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/check-fat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset.imageset/check-square-offset.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/check-square-offset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset.imageset/check-square-offset.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/check-square-offset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square.imageset/check-square.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/check-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square.imageset/check-square.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/check-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check.imageset/check.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check.imageset/check.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard.imageset/checkerboard.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/checkerboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard.imageset/checkerboard.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/checkerboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks.imageset/checks.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/checks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks.imageset/checks.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/checks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers.imageset/cheers.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cheers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers.imageset/cheers.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cheers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese.imageset/cheese.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cheese.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese.imageset/cheese.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cheese.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat.imageset/chef-hat.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/chef-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat.imageset/chef-hat.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/chef-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries.imageset/cherries.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cherries.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries.imageset/cherries.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cherries.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church.imageset/church.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/church.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church.imageset/church.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/church.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash.imageset/cigarette-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cigarette-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash.imageset/cigarette-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cigarette-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette.imageset/cigarette.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cigarette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette.imageset/cigarette.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cigarette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed.imageset/circle-dashed.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/circle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed.imageset/circle-dashed.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/circle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt.imageset/circle-half-tilt.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/circle-half-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt.imageset/circle-half-tilt.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/circle-half-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half.imageset/circle-half.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/circle-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half.imageset/circle-half.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/circle-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch.imageset/circle-notch.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/circle-notch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch.imageset/circle-notch.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/circle-notch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle.imageset/circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle.imageset/circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four.imageset/circles-four.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/circles-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four.imageset/circles-four.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/circles-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus.imageset/circles-three-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/circles-three-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus.imageset/circles-three-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/circles-three-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three.imageset/circles-three.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/circles-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three.imageset/circles-three.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/circles-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry.imageset/circuitry.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/circuitry.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry.imageset/circuitry.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/circuitry.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city.imageset/city.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/city.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city.imageset/city.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/city.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text.imageset/clipboard-text.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/clipboard-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text.imageset/clipboard-text.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/clipboard-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard.imageset/clipboard.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/clipboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard.imageset/clipboard.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/clipboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon.imageset/clock-afternoon.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/clock-afternoon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon.imageset/clock-afternoon.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/clock-afternoon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise.imageset/clock-clockwise.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/clock-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise.imageset/clock-clockwise.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/clock-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown.imageset/clock-countdown.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/clock-countdown.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown.imageset/clock-countdown.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/clock-countdown.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise.imageset/clock-counter-clockwise.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/clock-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise.imageset/clock-counter-clockwise.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/clock-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user.imageset/clock-user.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/clock-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user.imageset/clock-user.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/clock-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock.imageset/clock.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/clock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock.imageset/clock.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/clock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning.imageset/closed-captioning.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/closed-captioning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning.imageset/closed-captioning.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/closed-captioning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down.imageset/cloud-arrow-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down.imageset/cloud-arrow-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up.imageset/cloud-arrow-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up.imageset/cloud-arrow-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check.imageset/cloud-check.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check.imageset/cloud-check.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog.imageset/cloud-fog.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-fog.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog.imageset/cloud-fog.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-fog.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning.imageset/cloud-lightning.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-lightning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning.imageset/cloud-lightning.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-lightning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon.imageset/cloud-moon.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-moon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon.imageset/cloud-moon.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-moon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain.imageset/cloud-rain.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-rain.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain.imageset/cloud-rain.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-rain.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash.imageset/cloud-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash.imageset/cloud-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow.imageset/cloud-snow.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-snow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow.imageset/cloud-snow.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-snow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun.imageset/cloud-sun.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-sun.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun.imageset/cloud-sun.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-sun.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning.imageset/cloud-warning.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning.imageset/cloud-warning.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x.imageset/cloud-x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x.imageset/cloud-x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud.imageset/cloud.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud.imageset/cloud.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover.imageset/clover.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/clover.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover.imageset/clover.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/clover.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club.imageset/club.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/club.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club.imageset/club.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/club.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger.imageset/coat-hanger.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/coat-hanger.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger.imageset/coat-hanger.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/coat-hanger.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo.imageset/coda-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/coda-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo.imageset/coda-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/coda-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block.imageset/code-block.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/code-block.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block.imageset/code-block.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/code-block.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple.imageset/code-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/code-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple.imageset/code-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/code-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code.imageset/code.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code.imageset/code.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo.imageset/codepen-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/codepen-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo.imageset/codepen-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/codepen-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo.imageset/codesandbox-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/codesandbox-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo.imageset/codesandbox-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/codesandbox-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean.imageset/coffee-bean.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/coffee-bean.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean.imageset/coffee-bean.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/coffee-bean.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee.imageset/coffee.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/coffee.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee.imageset/coffee.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/coffee.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical.imageset/coin-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/coin-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical.imageset/coin-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/coin-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin.imageset/coin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/coin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin.imageset/coin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/coin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins.imageset/coins.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/coins.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins.imageset/coins.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/coins.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left.imageset/columns-plus-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/columns-plus-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left.imageset/columns-plus-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/columns-plus-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right.imageset/columns-plus-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/columns-plus-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right.imageset/columns-plus-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/columns-plus-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns.imageset/columns.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/columns.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns.imageset/columns.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/columns.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command.imageset/command.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/command.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command.imageset/command.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/command.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose.imageset/compass-rose.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/compass-rose.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose.imageset/compass-rose.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/compass-rose.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool.imageset/compass-tool.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/compass-tool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool.imageset/compass-tool.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/compass-tool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass.imageset/compass.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/compass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass.imageset/compass.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/compass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower.imageset/computer-tower.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/computer-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower.imageset/computer-tower.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/computer-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti.imageset/confetti.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/confetti.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti.imageset/confetti.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/confetti.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment.imageset/contactless-payment.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/contactless-payment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment.imageset/contactless-payment.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/contactless-payment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control.imageset/control.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/control.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control.imageset/control.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/control.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie.imageset/cookie.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cookie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie.imageset/cookie.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cookie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot.imageset/cooking-pot.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cooking-pot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot.imageset/cooking-pot.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cooking-pot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple.imageset/copy-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/copy-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple.imageset/copy-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/copy-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy.imageset/copy.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/copy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy.imageset/copy.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/copy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft.imageset/copyleft.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/copyleft.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft.imageset/copyleft.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/copyleft.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright.imageset/copyright.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/copyright.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright.imageset/copyright.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/copyright.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in.imageset/corners-in.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/corners-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in.imageset/corners-in.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/corners-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out.imageset/corners-out.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/corners-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out.imageset/corners-out.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/corners-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch.imageset/couch.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/couch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch.imageset/couch.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/couch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball.imageset/court-basketball.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/court-basketball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball.imageset/court-basketball.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/court-basketball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow.imageset/cow.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow.imageset/cow.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat.imageset/cowboy-hat.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cowboy-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat.imageset/cowboy-hat.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cowboy-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu.imageset/cpu.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cpu.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu.imageset/cpu.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cpu.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower.imageset/crane-tower.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/crane-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower.imageset/crane-tower.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/crane-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane.imageset/crane.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/crane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane.imageset/crane.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/crane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card.imageset/credit-card.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/credit-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card.imageset/credit-card.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/credit-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket.imageset/cricket.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cricket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket.imageset/cricket.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cricket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop.imageset/crop.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/crop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop.imageset/crop.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/crop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross.imageset/cross.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cross.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross.imageset/cross.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cross.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple.imageset/crosshair-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/crosshair-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple.imageset/crosshair-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/crosshair-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair.imageset/crosshair.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/crosshair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair.imageset/crosshair.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/crosshair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross.imageset/crown-cross.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/crown-cross.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross.imageset/crown-cross.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/crown-cross.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple.imageset/crown-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/crown-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple.imageset/crown-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/crown-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown.imageset/crown.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/crown.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown.imageset/crown.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/crown.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus.imageset/cube-focus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cube-focus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus.imageset/cube-focus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cube-focus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent.imageset/cube-transparent.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cube-transparent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent.imageset/cube-transparent.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cube-transparent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube.imageset/cube.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cube.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube.imageset/cube.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cube.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc.imageset/currency-btc.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-btc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc.imageset/currency-btc.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-btc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar.imageset/currency-circle-dollar.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-circle-dollar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar.imageset/currency-circle-dollar.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-circle-dollar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny.imageset/currency-cny.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-cny.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny.imageset/currency-cny.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-cny.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple.imageset/currency-dollar-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-dollar-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple.imageset/currency-dollar-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-dollar-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar.imageset/currency-dollar.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-dollar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar.imageset/currency-dollar.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-dollar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth.imageset/currency-eth.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-eth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth.imageset/currency-eth.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-eth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur.imageset/currency-eur.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-eur.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur.imageset/currency-eur.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-eur.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp.imageset/currency-gbp.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-gbp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp.imageset/currency-gbp.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-gbp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr.imageset/currency-inr.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-inr.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr.imageset/currency-inr.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-inr.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy.imageset/currency-jpy.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-jpy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy.imageset/currency-jpy.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-jpy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw.imageset/currency-krw.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-krw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw.imageset/currency-krw.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-krw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt.imageset/currency-kzt.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-kzt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt.imageset/currency-kzt.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-kzt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn.imageset/currency-ngn.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-ngn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn.imageset/currency-ngn.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-ngn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub.imageset/currency-rub.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-rub.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub.imageset/currency-rub.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/currency-rub.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click.imageset/cursor-click.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cursor-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click.imageset/cursor-click.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cursor-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text.imageset/cursor-text.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cursor-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text.imageset/cursor-text.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cursor-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor.imageset/cursor.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cursor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor.imageset/cursor.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cursor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder.imageset/cylinder.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/cylinder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder.imageset/cylinder.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/cylinder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database.imageset/database.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/database.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database.imageset/database.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/database.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk.imageset/desk.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/desk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk.imageset/desk.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/desk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower.imageset/desktop-tower.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/desktop-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower.imageset/desktop-tower.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/desktop-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop.imageset/desktop.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/desktop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop.imageset/desktop.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/desktop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective.imageset/detective.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/detective.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective.imageset/detective.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/detective.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo.imageset/dev-to-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dev-to-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo.imageset/dev-to-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dev-to-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera.imageset/device-mobile-camera.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-mobile-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera.imageset/device-mobile-camera.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-mobile-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash.imageset/device-mobile-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-mobile-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash.imageset/device-mobile-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-mobile-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker.imageset/device-mobile-speaker.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-mobile-speaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker.imageset/device-mobile-speaker.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-mobile-speaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile.imageset/device-mobile.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-mobile.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile.imageset/device-mobile.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-mobile.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate.imageset/device-rotate.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-rotate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate.imageset/device-rotate.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-rotate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera.imageset/device-tablet-camera.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-tablet-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera.imageset/device-tablet-camera.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-tablet-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker.imageset/device-tablet-speaker.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-tablet-speaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker.imageset/device-tablet-speaker.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-tablet-speaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet.imageset/device-tablet.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-tablet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet.imageset/device-tablet.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/device-tablet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices.imageset/devices.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/devices.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices.imageset/devices.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/devices.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond.imageset/diamond.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/diamond.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond.imageset/diamond.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/diamond.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four.imageset/diamonds-four.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/diamonds-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four.imageset/diamonds-four.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/diamonds-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five.imageset/dice-five.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dice-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five.imageset/dice-five.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dice-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four.imageset/dice-four.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dice-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four.imageset/dice-four.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dice-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one.imageset/dice-one.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dice-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one.imageset/dice-one.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dice-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six.imageset/dice-six.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dice-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six.imageset/dice-six.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dice-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three.imageset/dice-three.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dice-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three.imageset/dice-three.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dice-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two.imageset/dice-two.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dice-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two.imageset/dice-two.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dice-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc.imageset/disc.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/disc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc.imageset/disc.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/disc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball.imageset/disco-ball.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/disco-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball.imageset/disco-ball.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/disco-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo.imageset/discord-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/discord-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo.imageset/discord-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/discord-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide.imageset/divide.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/divide.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide.imageset/divide.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/divide.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna.imageset/dna.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dna.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna.imageset/dna.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dna.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog.imageset/dog.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dog.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog.imageset/dog.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dog.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open.imageset/door-open.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/door-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open.imageset/door-open.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/door-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door.imageset/door.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/door.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door.imageset/door.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/door.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline.imageset/dot-outline.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dot-outline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline.imageset/dot-outline.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dot-outline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot.imageset/dot.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot.imageset/dot.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine.imageset/dots-nine.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine.imageset/dots-nine.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical.imageset/dots-six-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-six-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical.imageset/dots-six-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-six-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six.imageset/dots-six.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six.imageset/dots-six.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical.imageset/dots-three-circle-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-three-circle-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical.imageset/dots-three-circle-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-three-circle-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle.imageset/dots-three-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-three-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle.imageset/dots-three-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-three-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical.imageset/dots-three-outline-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-three-outline-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical.imageset/dots-three-outline-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-three-outline-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline.imageset/dots-three-outline.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-three-outline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline.imageset/dots-three-outline.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-three-outline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical.imageset/dots-three-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-three-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical.imageset/dots-three-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-three-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three.imageset/dots-three.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three.imageset/dots-three.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dots-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple.imageset/download-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/download-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple.imageset/download-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/download-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download.imageset/download.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/download.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download.imageset/download.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/download.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress.imageset/dress.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dress.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress.imageset/dress.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dress.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser.imageset/dresser.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dresser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser.imageset/dresser.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dresser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo.imageset/dribbble-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dribbble-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo.imageset/dribbble-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dribbble-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone.imageset/drone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/drone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone.imageset/drone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/drone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom.imageset/drop-half-bottom.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/drop-half-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom.imageset/drop-half-bottom.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/drop-half-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half.imageset/drop-half.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/drop-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half.imageset/drop-half.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/drop-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple.imageset/drop-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/drop-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple.imageset/drop-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/drop-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash.imageset/drop-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/drop-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash.imageset/drop-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/drop-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop.imageset/drop.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/drop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop.imageset/drop.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/drop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo.imageset/dropbox-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/dropbox-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo.imageset/dropbox-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/dropbox-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash.imageset/ear-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/ear-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash.imageset/ear-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/ear-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear.imageset/ear.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/ear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear.imageset/ear.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/ear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack.imageset/egg-crack.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/egg-crack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack.imageset/egg-crack.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/egg-crack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg.imageset/egg.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/egg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg.imageset/egg.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/egg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple.imageset/eject-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/eject-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple.imageset/eject-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/eject-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject.imageset/eject.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/eject.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject.imageset/eject.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/eject.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator.imageset/elevator.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/elevator.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator.imageset/elevator.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/elevator.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty.imageset/empty.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty.imageset/empty.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine.imageset/engine.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/engine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine.imageset/engine.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/engine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open.imageset/envelope-open.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/envelope-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open.imageset/envelope-open.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/envelope-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open.imageset/envelope-simple-open.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/envelope-simple-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open.imageset/envelope-simple-open.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/envelope-simple-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple.imageset/envelope-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/envelope-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple.imageset/envelope-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/envelope-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope.imageset/envelope.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/envelope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope.imageset/envelope.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/envelope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer.imageset/equalizer.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/equalizer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer.imageset/equalizer.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/equalizer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals.imageset/equals.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals.imageset/equals.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser.imageset/eraser.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/eraser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser.imageset/eraser.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/eraser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down.imageset/escalator-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/escalator-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down.imageset/escalator-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/escalator-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up.imageset/escalator-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/escalator-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up.imageset/escalator-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/escalator-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam.imageset/exam.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/exam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam.imageset/exam.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/exam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark.imageset/exclamation-mark.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/exclamation-mark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark.imageset/exclamation-mark.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/exclamation-mark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square.imageset/exclude-square.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/exclude-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square.imageset/exclude-square.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/exclude-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude.imageset/exclude.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/exclude.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude.imageset/exclude.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/exclude.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export.imageset/export.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/export.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export.imageset/export.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/export.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed.imageset/eye-closed.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/eye-closed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed.imageset/eye-closed.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/eye-closed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash.imageset/eye-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/eye-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash.imageset/eye-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/eye-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye.imageset/eye.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/eye.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye.imageset/eye.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/eye.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample.imageset/eyedropper-sample.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/eyedropper-sample.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample.imageset/eyedropper-sample.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/eyedropper-sample.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper.imageset/eyedropper.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/eyedropper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper.imageset/eyedropper.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/eyedropper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses.imageset/eyeglasses.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/eyeglasses.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses.imageset/eyeglasses.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/eyeglasses.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes.imageset/eyes.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/eyes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes.imageset/eyes.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/eyes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask.imageset/face-mask.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/face-mask.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask.imageset/face-mask.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/face-mask.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo.imageset/facebook-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/facebook-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo.imageset/facebook-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/facebook-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory.imageset/factory.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/factory.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory.imageset/factory.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/factory.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal.imageset/faders-horizontal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/faders-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal.imageset/faders-horizontal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/faders-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders.imageset/faders.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/faders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders.imageset/faders.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/faders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter.imageset/fallout-shelter.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/fallout-shelter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter.imageset/fallout-shelter.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/fallout-shelter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan.imageset/fan.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/fan.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan.imageset/fan.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/fan.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm.imageset/farm.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/farm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm.imageset/farm.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/farm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle.imageset/fast-forward-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/fast-forward-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle.imageset/fast-forward-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/fast-forward-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward.imageset/fast-forward.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/fast-forward.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward.imageset/fast-forward.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/fast-forward.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather.imageset/feather.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/feather.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather.imageset/feather.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/feather.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo.imageset/fediverse-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/fediverse-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo.imageset/fediverse-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/fediverse-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo.imageset/figma-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/figma-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo.imageset/figma-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/figma-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive.imageset/file-archive.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-archive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive.imageset/file-archive.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-archive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down.imageset/file-arrow-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down.imageset/file-arrow-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up.imageset/file-arrow-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up.imageset/file-arrow-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio.imageset/file-audio.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-audio.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio.imageset/file-audio.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-audio.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp.imageset/file-c-sharp.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-c-sharp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp.imageset/file-c-sharp.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-c-sharp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c.imageset/file-c.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-c.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c.imageset/file-c.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-c.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud.imageset/file-cloud.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud.imageset/file-cloud.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code.imageset/file-code.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code.imageset/file-code.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp.imageset/file-cpp.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-cpp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp.imageset/file-cpp.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-cpp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css.imageset/file-css.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-css.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css.imageset/file-css.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-css.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv.imageset/file-csv.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-csv.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv.imageset/file-csv.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-csv.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed.imageset/file-dashed.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed.imageset/file-dashed.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc.imageset/file-doc.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-doc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc.imageset/file-doc.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-doc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html.imageset/file-html.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-html.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html.imageset/file-html.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-html.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image.imageset/file-image.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-image.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image.imageset/file-image.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-image.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini.imageset/file-ini.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-ini.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini.imageset/file-ini.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-ini.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg.imageset/file-jpg.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-jpg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg.imageset/file-jpg.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-jpg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js.imageset/file-js.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-js.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js.imageset/file-js.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-js.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx.imageset/file-jsx.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-jsx.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx.imageset/file-jsx.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-jsx.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock.imageset/file-lock.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock.imageset/file-lock.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass.imageset/file-magnifying-glass.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass.imageset/file-magnifying-glass.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md.imageset/file-md.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-md.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md.imageset/file-md.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-md.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus.imageset/file-minus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus.imageset/file-minus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf.imageset/file-pdf.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-pdf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf.imageset/file-pdf.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-pdf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus.imageset/file-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus.imageset/file-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png.imageset/file-png.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-png.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png.imageset/file-png.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-png.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt.imageset/file-ppt.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-ppt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt.imageset/file-ppt.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-ppt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py.imageset/file-py.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-py.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py.imageset/file-py.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-py.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs.imageset/file-rs.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-rs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs.imageset/file-rs.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-rs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql.imageset/file-sql.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-sql.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql.imageset/file-sql.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-sql.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg.imageset/file-svg.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-svg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg.imageset/file-svg.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-svg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text.imageset/file-text.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text.imageset/file-text.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts.imageset/file-ts.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-ts.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts.imageset/file-ts.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-ts.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx.imageset/file-tsx.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-tsx.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx.imageset/file-tsx.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-tsx.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt.imageset/file-txt.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-txt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt.imageset/file-txt.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-txt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video.imageset/file-video.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-video.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video.imageset/file-video.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-video.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue.imageset/file-vue.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-vue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue.imageset/file-vue.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-vue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x.imageset/file-x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x.imageset/file-x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls.imageset/file-xls.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-xls.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls.imageset/file-xls.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-xls.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip.imageset/file-zip.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-zip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip.imageset/file-zip.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file-zip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file.imageset/file.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/file.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file.imageset/file.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/file.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files.imageset/files.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/files.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files.imageset/files.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/files.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel.imageset/film-reel.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/film-reel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel.imageset/film-reel.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/film-reel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script.imageset/film-script.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/film-script.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script.imageset/film-script.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/film-script.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate.imageset/film-slate.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/film-slate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate.imageset/film-slate.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/film-slate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip.imageset/film-strip.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/film-strip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip.imageset/film-strip.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/film-strip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple.imageset/fingerprint-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/fingerprint-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple.imageset/fingerprint-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/fingerprint-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint.imageset/fingerprint.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/fingerprint.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint.imageset/fingerprint.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/fingerprint.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human.imageset/finn-the-human.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/finn-the-human.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human.imageset/finn-the-human.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/finn-the-human.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher.imageset/fire-extinguisher.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/fire-extinguisher.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher.imageset/fire-extinguisher.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/fire-extinguisher.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple.imageset/fire-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/fire-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple.imageset/fire-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/fire-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck.imageset/fire-truck.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/fire-truck.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck.imageset/fire-truck.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/fire-truck.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire.imageset/fire.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/fire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire.imageset/fire.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/fire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit.imageset/first-aid-kit.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/first-aid-kit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit.imageset/first-aid-kit.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/first-aid-kit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid.imageset/first-aid.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/first-aid.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid.imageset/first-aid.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/first-aid.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple.imageset/fish-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/fish-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple.imageset/fish-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/fish-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish.imageset/fish.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/fish.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish.imageset/fish.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/fish.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold.imageset/flag-banner-fold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/flag-banner-fold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold.imageset/flag-banner-fold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/flag-banner-fold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner.imageset/flag-banner.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/flag-banner.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner.imageset/flag-banner.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/flag-banner.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered.imageset/flag-checkered.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/flag-checkered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered.imageset/flag-checkered.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/flag-checkered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant.imageset/flag-pennant.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/flag-pennant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant.imageset/flag-pennant.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/flag-pennant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag.imageset/flag.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/flag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag.imageset/flag.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/flag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame.imageset/flame.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/flame.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame.imageset/flame.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/flame.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight.imageset/flashlight.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/flashlight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight.imageset/flashlight.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/flashlight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask.imageset/flask.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/flask.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask.imageset/flask.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/flask.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal.imageset/flip-horizontal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/flip-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal.imageset/flip-horizontal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/flip-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical.imageset/flip-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/flip-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical.imageset/flip-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/flip-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back.imageset/floppy-disk-back.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/floppy-disk-back.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back.imageset/floppy-disk-back.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/floppy-disk-back.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk.imageset/floppy-disk.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/floppy-disk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk.imageset/floppy-disk.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/floppy-disk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow.imageset/flow-arrow.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/flow-arrow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow.imageset/flow-arrow.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/flow-arrow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus.imageset/flower-lotus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/flower-lotus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus.imageset/flower-lotus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/flower-lotus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip.imageset/flower-tulip.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/flower-tulip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip.imageset/flower-tulip.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/flower-tulip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower.imageset/flower.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/flower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower.imageset/flower.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/flower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer.imageset/flying-saucer.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/flying-saucer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer.imageset/flying-saucer.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/flying-saucer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed.imageset/folder-dashed.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed.imageset/folder-dashed.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock.imageset/folder-lock.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock.imageset/folder-lock.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus.imageset/folder-minus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus.imageset/folder-minus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open.imageset/folder-open.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open.imageset/folder-open.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus.imageset/folder-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus.imageset/folder-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed.imageset/folder-simple-dashed.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-simple-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed.imageset/folder-simple-dashed.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-simple-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock.imageset/folder-simple-lock.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-simple-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock.imageset/folder-simple-lock.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-simple-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus.imageset/folder-simple-minus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-simple-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus.imageset/folder-simple-minus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-simple-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus.imageset/folder-simple-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-simple-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus.imageset/folder-simple-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-simple-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star.imageset/folder-simple-star.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-simple-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star.imageset/folder-simple-star.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-simple-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user.imageset/folder-simple-user.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-simple-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user.imageset/folder-simple-user.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-simple-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple.imageset/folder-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple.imageset/folder-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star.imageset/folder-star.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star.imageset/folder-star.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user.imageset/folder-user.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user.imageset/folder-user.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder.imageset/folder.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder.imageset/folder.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders.imageset/folders.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/folders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders.imageset/folders.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/folders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet.imageset/football-helmet.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/football-helmet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet.imageset/football-helmet.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/football-helmet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football.imageset/football.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/football.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football.imageset/football.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/football.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints.imageset/footprints.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/footprints.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints.imageset/footprints.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/footprints.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife.imageset/fork-knife.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/fork-knife.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife.imageset/fork-knife.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/fork-knife.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k.imageset/four-k.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/four-k.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k.imageset/four-k.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/four-k.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners.imageset/frame-corners.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/frame-corners.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners.imageset/frame-corners.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/frame-corners.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo.imageset/framer-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/framer-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo.imageset/framer-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/framer-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function.imageset/function.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/function.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function.imageset/function.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/function.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x.imageset/funnel-simple-x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/funnel-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x.imageset/funnel-simple-x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/funnel-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple.imageset/funnel-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/funnel-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple.imageset/funnel-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/funnel-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x.imageset/funnel-x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/funnel-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x.imageset/funnel-x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/funnel-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel.imageset/funnel.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/funnel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel.imageset/funnel.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/funnel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller.imageset/game-controller.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/game-controller.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller.imageset/game-controller.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/game-controller.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage.imageset/garage.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/garage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage.imageset/garage.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/garage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can.imageset/gas-can.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gas-can.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can.imageset/gas-can.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gas-can.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump.imageset/gas-pump.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gas-pump.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump.imageset/gas-pump.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gas-pump.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge.imageset/gauge.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gauge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge.imageset/gauge.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gauge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel.imageset/gavel.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gavel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel.imageset/gavel.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gavel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine.imageset/gear-fine.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gear-fine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine.imageset/gear-fine.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gear-fine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six.imageset/gear-six.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gear-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six.imageset/gear-six.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gear-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear.imageset/gear.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear.imageset/gear.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female.imageset/gender-female.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gender-female.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female.imageset/gender-female.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gender-female.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex.imageset/gender-intersex.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gender-intersex.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex.imageset/gender-intersex.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gender-intersex.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male.imageset/gender-male.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gender-male.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male.imageset/gender-male.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gender-male.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter.imageset/gender-neuter.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gender-neuter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter.imageset/gender-neuter.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gender-neuter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary.imageset/gender-nonbinary.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gender-nonbinary.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary.imageset/gender-nonbinary.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gender-nonbinary.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender.imageset/gender-transgender.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gender-transgender.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender.imageset/gender-transgender.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gender-transgender.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost.imageset/ghost.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/ghost.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost.imageset/ghost.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/ghost.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif.imageset/gif.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gif.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif.imageset/gif.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gif.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift.imageset/gift.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gift.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift.imageset/gift.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gift.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch.imageset/git-branch.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/git-branch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch.imageset/git-branch.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/git-branch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit.imageset/git-commit.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/git-commit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit.imageset/git-commit.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/git-commit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff.imageset/git-diff.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/git-diff.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff.imageset/git-diff.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/git-diff.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork.imageset/git-fork.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/git-fork.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork.imageset/git-fork.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/git-fork.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge.imageset/git-merge.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/git-merge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge.imageset/git-merge.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/git-merge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request.imageset/git-pull-request.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/git-pull-request.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request.imageset/git-pull-request.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/git-pull-request.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo.imageset/github-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/github-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo.imageset/github-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/github-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple.imageset/gitlab-logo-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gitlab-logo-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple.imageset/gitlab-logo-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gitlab-logo-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo.imageset/gitlab-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gitlab-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo.imageset/gitlab-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gitlab-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east.imageset/globe-hemisphere-east.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/globe-hemisphere-east.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east.imageset/globe-hemisphere-east.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/globe-hemisphere-east.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west.imageset/globe-hemisphere-west.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/globe-hemisphere-west.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west.imageset/globe-hemisphere-west.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/globe-hemisphere-west.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x.imageset/globe-simple-x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/globe-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x.imageset/globe-simple-x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/globe-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple.imageset/globe-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/globe-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple.imageset/globe-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/globe-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand.imageset/globe-stand.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/globe-stand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand.imageset/globe-stand.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/globe-stand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x.imageset/globe-x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/globe-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x.imageset/globe-x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/globe-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe.imageset/globe.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/globe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe.imageset/globe.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/globe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles.imageset/goggles.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/goggles.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles.imageset/goggles.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/goggles.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf.imageset/golf.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/golf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf.imageset/golf.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/golf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo.imageset/goodreads-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/goodreads-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo.imageset/goodreads-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/goodreads-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo.imageset/google-cardboard-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/google-cardboard-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo.imageset/google-cardboard-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/google-cardboard-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo.imageset/google-chrome-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/google-chrome-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo.imageset/google-chrome-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/google-chrome-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo.imageset/google-drive-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/google-drive-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo.imageset/google-drive-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/google-drive-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo.imageset/google-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/google-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo.imageset/google-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/google-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo.imageset/google-photos-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/google-photos-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo.imageset/google-photos-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/google-photos-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo.imageset/google-play-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/google-play-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo.imageset/google-play-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/google-play-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo.imageset/google-podcasts-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/google-podcasts-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo.imageset/google-podcasts-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/google-podcasts-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix.imageset/gps-fix.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gps-fix.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix.imageset/gps-fix.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gps-fix.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash.imageset/gps-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gps-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash.imageset/gps-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gps-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps.imageset/gps.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gps.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps.imageset/gps.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gps.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient.imageset/gradient.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/gradient.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient.imageset/gradient.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/gradient.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap.imageset/graduation-cap.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/graduation-cap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap.imageset/graduation-cap.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/graduation-cap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash.imageset/grains-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/grains-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash.imageset/grains-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/grains-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains.imageset/grains.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/grains.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains.imageset/grains.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/grains.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph.imageset/graph.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/graph.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph.imageset/graph.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/graph.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card.imageset/graphics-card.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/graphics-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card.imageset/graphics-card.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/graphics-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal.imageset/greater-than-or-equal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/greater-than-or-equal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal.imageset/greater-than-or-equal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/greater-than-or-equal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than.imageset/greater-than.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/greater-than.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than.imageset/greater-than.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/greater-than.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four.imageset/grid-four.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/grid-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four.imageset/grid-four.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/grid-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine.imageset/grid-nine.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/grid-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine.imageset/grid-nine.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/grid-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar.imageset/guitar.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/guitar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar.imageset/guitar.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/guitar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer.imageset/hair-dryer.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hair-dryer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer.imageset/hair-dryer.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hair-dryer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger.imageset/hamburger.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hamburger.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger.imageset/hamburger.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hamburger.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer.imageset/hammer.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hammer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer.imageset/hammer.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hammer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down.imageset/hand-arrow-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down.imageset/hand-arrow-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up.imageset/hand-arrow-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up.imageset/hand-arrow-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins.imageset/hand-coins.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-coins.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins.imageset/hand-coins.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-coins.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit.imageset/hand-deposit.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-deposit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit.imageset/hand-deposit.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-deposit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye.imageset/hand-eye.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-eye.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye.imageset/hand-eye.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-eye.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist.imageset/hand-fist.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-fist.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist.imageset/hand-fist.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-fist.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing.imageset/hand-grabbing.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-grabbing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing.imageset/hand-grabbing.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-grabbing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart.imageset/hand-heart.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart.imageset/hand-heart.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm.imageset/hand-palm.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-palm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm.imageset/hand-palm.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-palm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace.imageset/hand-peace.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-peace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace.imageset/hand-peace.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-peace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing.imageset/hand-pointing.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-pointing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing.imageset/hand-pointing.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-pointing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap.imageset/hand-soap.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-soap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap.imageset/hand-soap.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-soap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left.imageset/hand-swipe-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-swipe-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left.imageset/hand-swipe-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-swipe-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right.imageset/hand-swipe-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-swipe-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right.imageset/hand-swipe-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-swipe-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap.imageset/hand-tap.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-tap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap.imageset/hand-tap.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-tap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving.imageset/hand-waving.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-waving.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving.imageset/hand-waving.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-waving.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw.imageset/hand-withdraw.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-withdraw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw.imageset/hand-withdraw.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand-withdraw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand.imageset/hand.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand.imageset/hand.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple.imageset/handbag-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/handbag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple.imageset/handbag-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/handbag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag.imageset/handbag.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/handbag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag.imageset/handbag.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/handbag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping.imageset/hands-clapping.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hands-clapping.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping.imageset/hands-clapping.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hands-clapping.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying.imageset/hands-praying.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hands-praying.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying.imageset/hands-praying.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hands-praying.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake.imageset/handshake.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/handshake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake.imageset/handshake.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/handshake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive.imageset/hard-drive.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hard-drive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive.imageset/hard-drive.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hard-drive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives.imageset/hard-drives.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hard-drives.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives.imageset/hard-drives.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hard-drives.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat.imageset/hard-hat.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hard-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat.imageset/hard-hat.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hard-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight.imageset/hash-straight.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hash-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight.imageset/hash-straight.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hash-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash.imageset/hash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash.imageset/hash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit.imageset/head-circuit.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/head-circuit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit.imageset/head-circuit.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/head-circuit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights.imageset/headlights.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/headlights.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights.imageset/headlights.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/headlights.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones.imageset/headphones.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/headphones.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones.imageset/headphones.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/headphones.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset.imageset/headset.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/headset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset.imageset/headset.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/headset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break.imageset/heart-break.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/heart-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break.imageset/heart-break.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/heart-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half.imageset/heart-half.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/heart-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half.imageset/heart-half.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/heart-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break.imageset/heart-straight-break.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/heart-straight-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break.imageset/heart-straight-break.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/heart-straight-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight.imageset/heart-straight.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/heart-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight.imageset/heart-straight.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/heart-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart.imageset/heart.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart.imageset/heart.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat.imageset/heartbeat.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/heartbeat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat.imageset/heartbeat.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/heartbeat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon.imageset/hexagon.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hexagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon.imageset/hexagon.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hexagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition.imageset/high-definition.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/high-definition.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition.imageset/high-definition.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/high-definition.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel.imageset/high-heel.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/high-heel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel.imageset/high-heel.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/high-heel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle.imageset/highlighter-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/highlighter-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle.imageset/highlighter-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/highlighter-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter.imageset/highlighter.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/highlighter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter.imageset/highlighter.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/highlighter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey.imageset/hockey.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hockey.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey.imageset/hockey.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hockey.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie.imageset/hoodie.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hoodie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie.imageset/hoodie.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hoodie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse.imageset/horse.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/horse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse.imageset/horse.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/horse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital.imageset/hospital.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hospital.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital.imageset/hospital.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hospital.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high.imageset/hourglass-high.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high.imageset/hourglass-high.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low.imageset/hourglass-low.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low.imageset/hourglass-low.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium.imageset/hourglass-medium.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium.imageset/hourglass-medium.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high.imageset/hourglass-simple-high.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass-simple-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high.imageset/hourglass-simple-high.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass-simple-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low.imageset/hourglass-simple-low.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass-simple-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low.imageset/hourglass-simple-low.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass-simple-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium.imageset/hourglass-simple-medium.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass-simple-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium.imageset/hourglass-simple-medium.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass-simple-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple.imageset/hourglass-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple.imageset/hourglass-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass.imageset/hourglass.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass.imageset/hourglass.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hourglass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line.imageset/house-line.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/house-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line.imageset/house-line.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/house-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple.imageset/house-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/house-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple.imageset/house-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/house-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house.imageset/house.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/house.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house.imageset/house.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/house.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane.imageset/hurricane.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/hurricane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane.imageset/hurricane.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/hurricane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream.imageset/ice-cream.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/ice-cream.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream.imageset/ice-cream.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/ice-cream.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge.imageset/identification-badge.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/identification-badge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge.imageset/identification-badge.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/identification-badge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card.imageset/identification-card.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/identification-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card.imageset/identification-card.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/identification-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken.imageset/image-broken.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/image-broken.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken.imageset/image-broken.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/image-broken.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square.imageset/image-square.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/image-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square.imageset/image-square.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/image-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image.imageset/image.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/image.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image.imageset/image.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/image.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square.imageset/images-square.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/images-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square.imageset/images-square.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/images-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images.imageset/images.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/images.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images.imageset/images.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/images.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity.imageset/infinity.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/infinity.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity.imageset/infinity.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/infinity.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info.imageset/info.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/info.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info.imageset/info.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/info.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo.imageset/instagram-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/instagram-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo.imageset/instagram-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/instagram-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square.imageset/intersect-square.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/intersect-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square.imageset/intersect-square.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/intersect-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three.imageset/intersect-three.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/intersect-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three.imageset/intersect-three.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/intersect-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect.imageset/intersect.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/intersect.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect.imageset/intersect.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/intersect.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection.imageset/intersection.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/intersection.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection.imageset/intersection.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/intersection.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice.imageset/invoice.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/invoice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice.imageset/invoice.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/invoice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island.imageset/island.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/island.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island.imageset/island.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/island.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label.imageset/jar-label.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/jar-label.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label.imageset/jar-label.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/jar-label.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar.imageset/jar.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/jar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar.imageset/jar.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/jar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep.imageset/jeep.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/jeep.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep.imageset/jeep.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/jeep.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick.imageset/joystick.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/joystick.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick.imageset/joystick.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/joystick.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban.imageset/kanban.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/kanban.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban.imageset/kanban.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/kanban.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return.imageset/key-return.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/key-return.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return.imageset/key-return.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/key-return.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key.imageset/key.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/key.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key.imageset/key.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/key.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard.imageset/keyboard.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/keyboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard.imageset/keyboard.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/keyboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole.imageset/keyhole.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/keyhole.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole.imageset/keyhole.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/keyhole.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife.imageset/knife.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/knife.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife.imageset/knife.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/knife.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple.imageset/ladder-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/ladder-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple.imageset/ladder-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/ladder-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder.imageset/ladder.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/ladder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder.imageset/ladder.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/ladder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant.imageset/lamp-pendant.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lamp-pendant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant.imageset/lamp-pendant.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lamp-pendant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp.imageset/lamp.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lamp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp.imageset/lamp.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lamp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop.imageset/laptop.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/laptop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop.imageset/laptop.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/laptop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso.imageset/lasso.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lasso.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso.imageset/lasso.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lasso.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo.imageset/lastfm-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lastfm-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo.imageset/lastfm-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lastfm-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout.imageset/layout.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/layout.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout.imageset/layout.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/layout.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf.imageset/leaf.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/leaf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf.imageset/leaf.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/leaf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern.imageset/lectern.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lectern.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern.imageset/lectern.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lectern.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley.imageset/lego-smiley.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lego-smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley.imageset/lego-smiley.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lego-smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego.imageset/lego.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lego.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego.imageset/lego.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lego.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal.imageset/less-than-or-equal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/less-than-or-equal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal.imageset/less-than-or-equal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/less-than-or-equal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than.imageset/less-than.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/less-than.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than.imageset/less-than.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/less-than.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h.imageset/letter-circle-h.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/letter-circle-h.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h.imageset/letter-circle-h.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/letter-circle-h.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p.imageset/letter-circle-p.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/letter-circle-p.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p.imageset/letter-circle-p.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/letter-circle-p.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v.imageset/letter-circle-v.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/letter-circle-v.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v.imageset/letter-circle-v.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/letter-circle-v.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy.imageset/lifebuoy.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lifebuoy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy.imageset/lifebuoy.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lifebuoy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament.imageset/lightbulb-filament.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lightbulb-filament.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament.imageset/lightbulb-filament.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lightbulb-filament.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb.imageset/lightbulb.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lightbulb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb.imageset/lightbulb.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lightbulb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse.imageset/lighthouse.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lighthouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse.imageset/lighthouse.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lighthouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a.imageset/lightning-a.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lightning-a.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a.imageset/lightning-a.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lightning-a.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash.imageset/lightning-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lightning-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash.imageset/lightning-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lightning-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning.imageset/lightning.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lightning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning.imageset/lightning.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lightning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment.imageset/line-segment.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/line-segment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment.imageset/line-segment.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/line-segment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments.imageset/line-segments.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/line-segments.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments.imageset/line-segments.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/line-segments.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical.imageset/line-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical.imageset/line-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break.imageset/link-break.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/link-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break.imageset/link-break.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/link-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break.imageset/link-simple-break.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/link-simple-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break.imageset/link-simple-break.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/link-simple-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break.imageset/link-simple-horizontal-break.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/link-simple-horizontal-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break.imageset/link-simple-horizontal-break.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/link-simple-horizontal-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal.imageset/link-simple-horizontal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/link-simple-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal.imageset/link-simple-horizontal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/link-simple-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple.imageset/link-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/link-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple.imageset/link-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/link-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link.imageset/link.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/link.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link.imageset/link.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/link.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo.imageset/linkedin-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/linkedin-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo.imageset/linkedin-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/linkedin-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo.imageset/linktree-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/linktree-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo.imageset/linktree-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/linktree-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo.imageset/linux-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/linux-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo.imageset/linux-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/linux-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets.imageset/list-bullets.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-bullets.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets.imageset/list-bullets.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-bullets.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks.imageset/list-checks.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-checks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks.imageset/list-checks.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-checks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes.imageset/list-dashes.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-dashes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes.imageset/list-dashes.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-dashes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart.imageset/list-heart.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart.imageset/list-heart.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass.imageset/list-magnifying-glass.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass.imageset/list-magnifying-glass.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers.imageset/list-numbers.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-numbers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers.imageset/list-numbers.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-numbers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus.imageset/list-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus.imageset/list-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star.imageset/list-star.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star.imageset/list-star.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/list-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list.imageset/list.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list.imageset/list.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open.imageset/lock-key-open.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock-key-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open.imageset/lock-key-open.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock-key-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key.imageset/lock-key.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock-key.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key.imageset/lock-key.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock-key.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open.imageset/lock-laminated-open.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock-laminated-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open.imageset/lock-laminated-open.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock-laminated-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated.imageset/lock-laminated.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock-laminated.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated.imageset/lock-laminated.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock-laminated.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open.imageset/lock-open.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open.imageset/lock-open.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open.imageset/lock-simple-open.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock-simple-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open.imageset/lock-simple-open.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock-simple-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple.imageset/lock-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple.imageset/lock-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock.imageset/lock.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock.imageset/lock.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers.imageset/lockers.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/lockers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers.imageset/lockers.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/lockers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log.imageset/log.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/log.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log.imageset/log.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/log.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand.imageset/magic-wand.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/magic-wand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand.imageset/magic-wand.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/magic-wand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight.imageset/magnet-straight.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/magnet-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight.imageset/magnet-straight.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/magnet-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet.imageset/magnet.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/magnet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet.imageset/magnet.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/magnet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus.imageset/magnifying-glass-minus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/magnifying-glass-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus.imageset/magnifying-glass-minus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/magnifying-glass-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus.imageset/magnifying-glass-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/magnifying-glass-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus.imageset/magnifying-glass-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/magnifying-glass-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass.imageset/magnifying-glass.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass.imageset/magnifying-glass.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox.imageset/mailbox.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/mailbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox.imageset/mailbox.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/mailbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area.imageset/map-pin-area.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-pin-area.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area.imageset/map-pin-area.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-pin-area.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line.imageset/map-pin-line.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-pin-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line.imageset/map-pin-line.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-pin-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus.imageset/map-pin-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-pin-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus.imageset/map-pin-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-pin-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area.imageset/map-pin-simple-area.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-pin-simple-area.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area.imageset/map-pin-simple-area.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-pin-simple-area.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line.imageset/map-pin-simple-line.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-pin-simple-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line.imageset/map-pin-simple-line.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-pin-simple-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple.imageset/map-pin-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-pin-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple.imageset/map-pin-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-pin-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin.imageset/map-pin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-pin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin.imageset/map-pin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-pin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold.imageset/map-trifold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-trifold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold.imageset/map-trifold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/map-trifold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo.imageset/markdown-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/markdown-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo.imageset/markdown-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/markdown-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle.imageset/marker-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/marker-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle.imageset/marker-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/marker-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini.imageset/martini.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/martini.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini.imageset/martini.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/martini.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy.imageset/mask-happy.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/mask-happy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy.imageset/mask-happy.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/mask-happy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad.imageset/mask-sad.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/mask-sad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad.imageset/mask-sad.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/mask-sad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo.imageset/mastodon-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/mastodon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo.imageset/mastodon-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/mastodon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations.imageset/math-operations.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/math-operations.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations.imageset/math-operations.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/math-operations.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo.imageset/matrix-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/matrix-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo.imageset/matrix-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/matrix-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military.imageset/medal-military.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/medal-military.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military.imageset/medal-military.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/medal-military.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal.imageset/medal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/medal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal.imageset/medal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/medal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo.imageset/medium-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/medium-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo.imageset/medium-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/medium-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple.imageset/megaphone-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/megaphone-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple.imageset/megaphone-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/megaphone-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone.imageset/megaphone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/megaphone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone.imageset/megaphone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/megaphone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of.imageset/member-of.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/member-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of.imageset/member-of.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/member-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory.imageset/memory.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/memory.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory.imageset/memory.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/memory.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo.imageset/messenger-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/messenger-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo.imageset/messenger-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/messenger-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo.imageset/meta-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/meta-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo.imageset/meta-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/meta-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor.imageset/meteor.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/meteor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor.imageset/meteor.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/meteor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome.imageset/metronome.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/metronome.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome.imageset/metronome.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/metronome.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash.imageset/microphone-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/microphone-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash.imageset/microphone-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/microphone-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage.imageset/microphone-stage.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/microphone-stage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage.imageset/microphone-stage.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/microphone-stage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone.imageset/microphone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/microphone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone.imageset/microphone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/microphone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope.imageset/microscope.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/microscope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope.imageset/microscope.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/microscope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo.imageset/microsoft-excel-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/microsoft-excel-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo.imageset/microsoft-excel-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/microsoft-excel-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo.imageset/microsoft-outlook-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/microsoft-outlook-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo.imageset/microsoft-outlook-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/microsoft-outlook-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo.imageset/microsoft-powerpoint-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/microsoft-powerpoint-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo.imageset/microsoft-powerpoint-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/microsoft-powerpoint-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo.imageset/microsoft-teams-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/microsoft-teams-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo.imageset/microsoft-teams-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/microsoft-teams-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo.imageset/microsoft-word-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/microsoft-word-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo.imageset/microsoft-word-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/microsoft-word-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle.imageset/minus-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/minus-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle.imageset/minus-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/minus-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square.imageset/minus-square.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/minus-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square.imageset/minus-square.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/minus-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus.imageset/minus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus.imageset/minus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy.imageset/money-wavy.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/money-wavy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy.imageset/money-wavy.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/money-wavy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money.imageset/money.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/money.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money.imageset/money.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/money.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up.imageset/monitor-arrow-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/monitor-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up.imageset/monitor-arrow-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/monitor-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play.imageset/monitor-play.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/monitor-play.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play.imageset/monitor-play.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/monitor-play.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor.imageset/monitor.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/monitor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor.imageset/monitor.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/monitor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars.imageset/moon-stars.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/moon-stars.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars.imageset/moon-stars.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/moon-stars.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon.imageset/moon.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/moon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon.imageset/moon.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/moon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front.imageset/moped-front.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/moped-front.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front.imageset/moped-front.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/moped-front.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped.imageset/moped.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/moped.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped.imageset/moped.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/moped.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque.imageset/mosque.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/mosque.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque.imageset/mosque.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/mosque.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle.imageset/motorcycle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/motorcycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle.imageset/motorcycle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/motorcycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains.imageset/mountains.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/mountains.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains.imageset/mountains.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/mountains.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click.imageset/mouse-left-click.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/mouse-left-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click.imageset/mouse-left-click.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/mouse-left-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click.imageset/mouse-middle-click.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/mouse-middle-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click.imageset/mouse-middle-click.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/mouse-middle-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click.imageset/mouse-right-click.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/mouse-right-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click.imageset/mouse-right-click.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/mouse-right-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll.imageset/mouse-scroll.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/mouse-scroll.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll.imageset/mouse-scroll.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/mouse-scroll.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple.imageset/mouse-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/mouse-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple.imageset/mouse-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/mouse-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse.imageset/mouse.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/mouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse.imageset/mouse.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/mouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple.imageset/music-note-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/music-note-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple.imageset/music-note-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/music-note-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note.imageset/music-note.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/music-note.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note.imageset/music-note.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/music-note.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus.imageset/music-notes-minus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/music-notes-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus.imageset/music-notes-minus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/music-notes-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus.imageset/music-notes-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/music-notes-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus.imageset/music-notes-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/music-notes-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple.imageset/music-notes-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/music-notes-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple.imageset/music-notes-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/music-notes-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes.imageset/music-notes.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/music-notes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes.imageset/music-notes.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/music-notes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow.imageset/navigation-arrow.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/navigation-arrow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow.imageset/navigation-arrow.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/navigation-arrow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle.imageset/needle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/needle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle.imageset/needle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/needle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash.imageset/network-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/network-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash.imageset/network-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/network-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x.imageset/network-x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/network-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x.imageset/network-x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/network-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network.imageset/network.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/network.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network.imageset/network.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/network.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping.imageset/newspaper-clipping.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/newspaper-clipping.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping.imageset/newspaper-clipping.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/newspaper-clipping.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper.imageset/newspaper.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/newspaper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper.imageset/newspaper.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/newspaper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals.imageset/not-equals.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/not-equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals.imageset/not-equals.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/not-equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of.imageset/not-member-of.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/not-member-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of.imageset/not-member-of.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/not-member-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of.imageset/not-subset-of.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/not-subset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of.imageset/not-subset-of.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/not-subset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of.imageset/not-superset-of.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/not-superset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of.imageset/not-superset-of.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/not-superset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches.imageset/notches.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/notches.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches.imageset/notches.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/notches.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank.imageset/note-blank.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/note-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank.imageset/note-blank.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/note-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil.imageset/note-pencil.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/note-pencil.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil.imageset/note-pencil.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/note-pencil.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note.imageset/note.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/note.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note.imageset/note.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/note.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook.imageset/notebook.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/notebook.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook.imageset/notebook.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/notebook.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad.imageset/notepad.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/notepad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad.imageset/notepad.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/notepad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification.imageset/notification.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/notification.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification.imageset/notification.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/notification.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo.imageset/notion-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/notion-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo.imageset/notion-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/notion-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant.imageset/nuclear-plant.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/nuclear-plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant.imageset/nuclear-plant.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/nuclear-plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight.imageset/number-circle-eight.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight.imageset/number-circle-eight.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five.imageset/number-circle-five.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five.imageset/number-circle-five.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four.imageset/number-circle-four.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four.imageset/number-circle-four.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine.imageset/number-circle-nine.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine.imageset/number-circle-nine.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one.imageset/number-circle-one.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one.imageset/number-circle-one.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven.imageset/number-circle-seven.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven.imageset/number-circle-seven.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six.imageset/number-circle-six.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six.imageset/number-circle-six.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three.imageset/number-circle-three.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three.imageset/number-circle-three.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two.imageset/number-circle-two.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two.imageset/number-circle-two.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero.imageset/number-circle-zero.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero.imageset/number-circle-zero.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-circle-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight.imageset/number-eight.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight.imageset/number-eight.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five.imageset/number-five.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five.imageset/number-five.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four.imageset/number-four.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four.imageset/number-four.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine.imageset/number-nine.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine.imageset/number-nine.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one.imageset/number-one.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one.imageset/number-one.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven.imageset/number-seven.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven.imageset/number-seven.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six.imageset/number-six.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six.imageset/number-six.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight.imageset/number-square-eight.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight.imageset/number-square-eight.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five.imageset/number-square-five.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five.imageset/number-square-five.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four.imageset/number-square-four.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four.imageset/number-square-four.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine.imageset/number-square-nine.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine.imageset/number-square-nine.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one.imageset/number-square-one.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one.imageset/number-square-one.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven.imageset/number-square-seven.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven.imageset/number-square-seven.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six.imageset/number-square-six.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six.imageset/number-square-six.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three.imageset/number-square-three.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three.imageset/number-square-three.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two.imageset/number-square-two.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two.imageset/number-square-two.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero.imageset/number-square-zero.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero.imageset/number-square-zero.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-square-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three.imageset/number-three.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three.imageset/number-three.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two.imageset/number-two.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two.imageset/number-two.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero.imageset/number-zero.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero.imageset/number-zero.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/number-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad.imageset/numpad.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/numpad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad.imageset/numpad.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/numpad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut.imageset/nut.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/nut.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut.imageset/nut.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/nut.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo.imageset/ny-times-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/ny-times-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo.imageset/ny-times-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/ny-times-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon.imageset/octagon.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/octagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon.imageset/octagon.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/octagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair.imageset/office-chair.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/office-chair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair.imageset/office-chair.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/office-chair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri.imageset/onigiri.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/onigiri.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri.imageset/onigiri.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/onigiri.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo.imageset/open-ai-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/open-ai-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo.imageset/open-ai-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/open-ai-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option.imageset/option.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/option.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option.imageset/option.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/option.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice.imageset/orange-slice.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/orange-slice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice.imageset/orange-slice.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/orange-slice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange.imageset/orange.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/orange.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange.imageset/orange.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/orange.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven.imageset/oven.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/oven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven.imageset/oven.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/oven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package.imageset/package.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/package.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package.imageset/package.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/package.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad.imageset/paint-brush-broad.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/paint-brush-broad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad.imageset/paint-brush-broad.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/paint-brush-broad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household.imageset/paint-brush-household.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/paint-brush-household.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household.imageset/paint-brush-household.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/paint-brush-household.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush.imageset/paint-brush.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/paint-brush.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush.imageset/paint-brush.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/paint-brush.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket.imageset/paint-bucket.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/paint-bucket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket.imageset/paint-bucket.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/paint-bucket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller.imageset/paint-roller.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/paint-roller.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller.imageset/paint-roller.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/paint-roller.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette.imageset/palette.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/palette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette.imageset/palette.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/palette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama.imageset/panorama.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/panorama.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama.imageset/panorama.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/panorama.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants.imageset/pants.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pants.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants.imageset/pants.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pants.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right.imageset/paper-plane-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/paper-plane-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right.imageset/paper-plane-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/paper-plane-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt.imageset/paper-plane-tilt.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/paper-plane-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt.imageset/paper-plane-tilt.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/paper-plane-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane.imageset/paper-plane.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/paper-plane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane.imageset/paper-plane.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/paper-plane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal.imageset/paperclip-horizontal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/paperclip-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal.imageset/paperclip-horizontal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/paperclip-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip.imageset/paperclip.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/paperclip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip.imageset/paperclip.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/paperclip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute.imageset/parachute.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/parachute.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute.imageset/parachute.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/parachute.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph.imageset/paragraph.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/paragraph.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph.imageset/paragraph.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/paragraph.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram.imageset/parallelogram.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/parallelogram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram.imageset/parallelogram.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/parallelogram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park.imageset/park.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/park.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park.imageset/park.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/park.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password.imageset/password.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/password.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password.imageset/password.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/password.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path.imageset/path.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/path.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path.imageset/path.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/path.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo.imageset/patreon-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/patreon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo.imageset/patreon-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/patreon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle.imageset/pause-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pause-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle.imageset/pause-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pause-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause.imageset/pause.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause.imageset/pause.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print.imageset/paw-print.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/paw-print.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print.imageset/paw-print.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/paw-print.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo.imageset/paypal-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/paypal-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo.imageset/paypal-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/paypal-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace.imageset/peace.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/peace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace.imageset/peace.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/peace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight.imageset/pen-nib-straight.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pen-nib-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight.imageset/pen-nib-straight.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pen-nib-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib.imageset/pen-nib.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pen-nib.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib.imageset/pen-nib.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pen-nib.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen.imageset/pen.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen.imageset/pen.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle.imageset/pencil-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle.imageset/pencil-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line.imageset/pencil-line.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line.imageset/pencil-line.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler.imageset/pencil-ruler.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil-ruler.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler.imageset/pencil-ruler.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil-ruler.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line.imageset/pencil-simple-line.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil-simple-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line.imageset/pencil-simple-line.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil-simple-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash.imageset/pencil-simple-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash.imageset/pencil-simple-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple.imageset/pencil-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple.imageset/pencil-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash.imageset/pencil-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash.imageset/pencil-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil.imageset/pencil.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil.imageset/pencil.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pencil.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon.imageset/pentagon.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pentagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon.imageset/pentagon.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pentagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram.imageset/pentagram.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pentagram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram.imageset/pentagram.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pentagram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper.imageset/pepper.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pepper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper.imageset/pepper.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pepper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent.imageset/percent.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/percent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent.imageset/percent.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/percent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread.imageset/person-arms-spread.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-arms-spread.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread.imageset/person-arms-spread.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-arms-spread.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike.imageset/person-simple-bike.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-bike.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike.imageset/person-simple-bike.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-bike.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle.imageset/person-simple-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle.imageset/person-simple-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike.imageset/person-simple-hike.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-hike.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike.imageset/person-simple-hike.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-hike.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run.imageset/person-simple-run.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-run.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run.imageset/person-simple-run.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-run.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski.imageset/person-simple-ski.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-ski.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski.imageset/person-simple-ski.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-ski.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard.imageset/person-simple-snowboard.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-snowboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard.imageset/person-simple-snowboard.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-snowboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim.imageset/person-simple-swim.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-swim.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim.imageset/person-simple-swim.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-swim.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi.imageset/person-simple-tai-chi.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-tai-chi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi.imageset/person-simple-tai-chi.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-tai-chi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw.imageset/person-simple-throw.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-throw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw.imageset/person-simple-throw.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-throw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk.imageset/person-simple-walk.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-walk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk.imageset/person-simple-walk.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple-walk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple.imageset/person-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple.imageset/person-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/person-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person.imageset/person.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/person.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person.imageset/person.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/person.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective.imageset/perspective.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/perspective.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective.imageset/perspective.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/perspective.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call.imageset/phone-call.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-call.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call.imageset/phone-call.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-call.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect.imageset/phone-disconnect.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-disconnect.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect.imageset/phone-disconnect.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-disconnect.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming.imageset/phone-incoming.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-incoming.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming.imageset/phone-incoming.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-incoming.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list.imageset/phone-list.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list.imageset/phone-list.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing.imageset/phone-outgoing.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-outgoing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing.imageset/phone-outgoing.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-outgoing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause.imageset/phone-pause.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause.imageset/phone-pause.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus.imageset/phone-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus.imageset/phone-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash.imageset/phone-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash.imageset/phone-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer.imageset/phone-transfer.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-transfer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer.imageset/phone-transfer.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-transfer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x.imageset/phone-x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x.imageset/phone-x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone.imageset/phone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone.imageset/phone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/phone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo.imageset/phosphor-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/phosphor-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo.imageset/phosphor-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/phosphor-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi.imageset/pi.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi.imageset/pi.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys.imageset/piano-keys.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/piano-keys.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys.imageset/piano-keys.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/piano-keys.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table.imageset/picnic-table.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/picnic-table.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table.imageset/picnic-table.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/picnic-table.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture.imageset/picture-in-picture.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/picture-in-picture.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture.imageset/picture-in-picture.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/picture-in-picture.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank.imageset/piggy-bank.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/piggy-bank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank.imageset/piggy-bank.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/piggy-bank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill.imageset/pill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pill.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill.imageset/pill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pill.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong.imageset/ping-pong.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/ping-pong.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong.imageset/ping-pong.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/ping-pong.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass.imageset/pint-glass.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pint-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass.imageset/pint-glass.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pint-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo.imageset/pinterest-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pinterest-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo.imageset/pinterest-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pinterest-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel.imageset/pinwheel.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pinwheel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel.imageset/pinwheel.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pinwheel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench.imageset/pipe-wrench.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pipe-wrench.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench.imageset/pipe-wrench.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pipe-wrench.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe.imageset/pipe.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pipe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe.imageset/pipe.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pipe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo.imageset/pix-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pix-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo.imageset/pix-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pix-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza.imageset/pizza.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pizza.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza.imageset/pizza.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pizza.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder.imageset/placeholder.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/placeholder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder.imageset/placeholder.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/placeholder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet.imageset/planet.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/planet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet.imageset/planet.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/planet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant.imageset/plant.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant.imageset/plant.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle.imageset/play-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/play-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle.imageset/play-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/play-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause.imageset/play-pause.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/play-pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause.imageset/play-pause.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/play-pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play.imageset/play.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/play.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play.imageset/play.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/play.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist.imageset/playlist.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/playlist.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist.imageset/playlist.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/playlist.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging.imageset/plug-charging.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/plug-charging.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging.imageset/plug-charging.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/plug-charging.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug.imageset/plug.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/plug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug.imageset/plug.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/plug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected.imageset/plugs-connected.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/plugs-connected.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected.imageset/plugs-connected.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/plugs-connected.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs.imageset/plugs.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/plugs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs.imageset/plugs.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/plugs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle.imageset/plus-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/plus-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle.imageset/plus-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/plus-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus.imageset/plus-minus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/plus-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus.imageset/plus-minus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/plus-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square.imageset/plus-square.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/plus-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square.imageset/plus-square.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/plus-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus.imageset/plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus.imageset/plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip.imageset/poker-chip.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/poker-chip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip.imageset/poker-chip.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/poker-chip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car.imageset/police-car.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/police-car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car.imageset/police-car.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/police-car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon.imageset/polygon.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/polygon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon.imageset/polygon.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/polygon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn.imageset/popcorn.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/popcorn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn.imageset/popcorn.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/popcorn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle.imageset/popsicle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/popsicle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle.imageset/popsicle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/popsicle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant.imageset/potted-plant.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/potted-plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant.imageset/potted-plant.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/potted-plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power.imageset/power.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/power.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power.imageset/power.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/power.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription.imageset/prescription.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/prescription.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription.imageset/prescription.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/prescription.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart.imageset/presentation-chart.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/presentation-chart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart.imageset/presentation-chart.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/presentation-chart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation.imageset/presentation.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/presentation.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation.imageset/presentation.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/presentation.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer.imageset/printer.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/printer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer.imageset/printer.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/printer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset.imageset/prohibit-inset.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/prohibit-inset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset.imageset/prohibit-inset.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/prohibit-inset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit.imageset/prohibit.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/prohibit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit.imageset/prohibit.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/prohibit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart.imageset/projector-screen-chart.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/projector-screen-chart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart.imageset/projector-screen-chart.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/projector-screen-chart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen.imageset/projector-screen.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/projector-screen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen.imageset/projector-screen.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/projector-screen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse.imageset/pulse.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/pulse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse.imageset/pulse.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/pulse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash.imageset/push-pin-simple-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/push-pin-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash.imageset/push-pin-simple-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/push-pin-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple.imageset/push-pin-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/push-pin-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple.imageset/push-pin-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/push-pin-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash.imageset/push-pin-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/push-pin-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash.imageset/push-pin-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/push-pin-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin.imageset/push-pin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/push-pin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin.imageset/push-pin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/push-pin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece.imageset/puzzle-piece.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/puzzle-piece.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece.imageset/puzzle-piece.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/puzzle-piece.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code.imageset/qr-code.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/qr-code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code.imageset/qr-code.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/qr-code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark.imageset/question-mark.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/question-mark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark.imageset/question-mark.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/question-mark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question.imageset/question.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/question.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question.imageset/question.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/question.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue.imageset/queue.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/queue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue.imageset/queue.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/queue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes.imageset/quotes.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/quotes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes.imageset/quotes.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/quotes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit.imageset/rabbit.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/rabbit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit.imageset/rabbit.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/rabbit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet.imageset/racquet.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/racquet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet.imageset/racquet.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/racquet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical.imageset/radical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/radical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical.imageset/radical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/radical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button.imageset/radio-button.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/radio-button.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button.imageset/radio-button.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/radio-button.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio.imageset/radio.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/radio.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio.imageset/radio.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/radio.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive.imageset/radioactive.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/radioactive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive.imageset/radioactive.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/radioactive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud.imageset/rainbow-cloud.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/rainbow-cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud.imageset/rainbow-cloud.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/rainbow-cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow.imageset/rainbow.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/rainbow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow.imageset/rainbow.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/rainbow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking.imageset/ranking.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/ranking.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking.imageset/ranking.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/ranking.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo.imageset/read-cv-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/read-cv-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo.imageset/read-cv-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/read-cv-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x.imageset/receipt-x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/receipt-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x.imageset/receipt-x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/receipt-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt.imageset/receipt.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/receipt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt.imageset/receipt.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/receipt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record.imageset/record.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/record.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record.imageset/record.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/record.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed.imageset/rectangle-dashed.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/rectangle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed.imageset/rectangle-dashed.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/rectangle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle.imageset/rectangle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/rectangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle.imageset/rectangle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/rectangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle.imageset/recycle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/recycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle.imageset/recycle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/recycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo.imageset/reddit-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/reddit-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo.imageset/reddit-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/reddit-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once.imageset/repeat-once.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/repeat-once.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once.imageset/repeat-once.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/repeat-once.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat.imageset/repeat.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/repeat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat.imageset/repeat.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/repeat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo.imageset/replit-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/replit-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo.imageset/replit-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/replit-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize.imageset/resize.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/resize.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize.imageset/resize.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/resize.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle.imageset/rewind-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/rewind-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle.imageset/rewind-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/rewind-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind.imageset/rewind.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/rewind.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind.imageset/rewind.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/rewind.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon.imageset/road-horizon.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/road-horizon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon.imageset/road-horizon.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/road-horizon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot.imageset/robot.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/robot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot.imageset/robot.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/robot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch.imageset/rocket-launch.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/rocket-launch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch.imageset/rocket-launch.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/rocket-launch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket.imageset/rocket.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/rocket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket.imageset/rocket.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/rocket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom.imageset/rows-plus-bottom.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/rows-plus-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom.imageset/rows-plus-bottom.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/rows-plus-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top.imageset/rows-plus-top.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/rows-plus-top.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top.imageset/rows-plus-top.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/rows-plus-top.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows.imageset/rows.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/rows.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows.imageset/rows.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/rows.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple.imageset/rss-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/rss-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple.imageset/rss-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/rss-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss.imageset/rss.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/rss.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss.imageset/rss.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/rss.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug.imageset/rug.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/rug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug.imageset/rug.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/rug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler.imageset/ruler.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/ruler.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler.imageset/ruler.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/ruler.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat.imageset/sailboat.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sailboat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat.imageset/sailboat.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sailboat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales.imageset/scales.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/scales.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales.imageset/scales.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/scales.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley.imageset/scan-smiley.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/scan-smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley.imageset/scan-smiley.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/scan-smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan.imageset/scan.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/scan.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan.imageset/scan.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/scan.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors.imageset/scissors.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/scissors.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors.imageset/scissors.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/scissors.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter.imageset/scooter.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/scooter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter.imageset/scooter.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/scooter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast.imageset/screencast.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/screencast.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast.imageset/screencast.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/screencast.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver.imageset/screwdriver.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/screwdriver.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver.imageset/screwdriver.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/screwdriver.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop.imageset/scribble-loop.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/scribble-loop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop.imageset/scribble-loop.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/scribble-loop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble.imageset/scribble.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/scribble.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble.imageset/scribble.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/scribble.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll.imageset/scroll.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/scroll.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll.imageset/scroll.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/scroll.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check.imageset/seal-check.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/seal-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check.imageset/seal-check.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/seal-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent.imageset/seal-percent.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/seal-percent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent.imageset/seal-percent.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/seal-percent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question.imageset/seal-question.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/seal-question.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question.imageset/seal-question.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/seal-question.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning.imageset/seal-warning.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/seal-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning.imageset/seal-warning.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/seal-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal.imageset/seal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/seal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal.imageset/seal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/seal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat.imageset/seat.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/seat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat.imageset/seat.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/seat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt.imageset/seatbelt.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/seatbelt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt.imageset/seatbelt.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/seatbelt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera.imageset/security-camera.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/security-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera.imageset/security-camera.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/security-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all.imageset/selection-all.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/selection-all.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all.imageset/selection-all.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/selection-all.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background.imageset/selection-background.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/selection-background.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background.imageset/selection-background.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/selection-background.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground.imageset/selection-foreground.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/selection-foreground.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground.imageset/selection-foreground.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/selection-foreground.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse.imageset/selection-inverse.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/selection-inverse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse.imageset/selection-inverse.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/selection-inverse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus.imageset/selection-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/selection-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus.imageset/selection-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/selection-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash.imageset/selection-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/selection-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash.imageset/selection-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/selection-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection.imageset/selection.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/selection.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection.imageset/selection.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/selection.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes.imageset/shapes.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shapes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes.imageset/shapes.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shapes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat.imageset/share-fat.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/share-fat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat.imageset/share-fat.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/share-fat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network.imageset/share-network.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/share-network.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network.imageset/share-network.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/share-network.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share.imageset/share.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/share.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share.imageset/share.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/share.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check.imageset/shield-check.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check.imageset/shield-check.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered.imageset/shield-checkered.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield-checkered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered.imageset/shield-checkered.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield-checkered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron.imageset/shield-chevron.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield-chevron.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron.imageset/shield-chevron.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield-chevron.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus.imageset/shield-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus.imageset/shield-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash.imageset/shield-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash.imageset/shield-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star.imageset/shield-star.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star.imageset/shield-star.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning.imageset/shield-warning.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning.imageset/shield-warning.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield.imageset/shield.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield.imageset/shield.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shield.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container.imageset/shipping-container.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shipping-container.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container.imageset/shipping-container.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shipping-container.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded.imageset/shirt-folded.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shirt-folded.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded.imageset/shirt-folded.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shirt-folded.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star.imageset/shooting-star.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shooting-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star.imageset/shooting-star.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shooting-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open.imageset/shopping-bag-open.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shopping-bag-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open.imageset/shopping-bag-open.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shopping-bag-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag.imageset/shopping-bag.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shopping-bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag.imageset/shopping-bag.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shopping-bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple.imageset/shopping-cart-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shopping-cart-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple.imageset/shopping-cart-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shopping-cart-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart.imageset/shopping-cart.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shopping-cart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart.imageset/shopping-cart.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shopping-cart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel.imageset/shovel.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shovel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel.imageset/shovel.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shovel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower.imageset/shower.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower.imageset/shower.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp.imageset/shrimp.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shrimp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp.imageset/shrimp.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shrimp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular.imageset/shuffle-angular.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shuffle-angular.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular.imageset/shuffle-angular.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shuffle-angular.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple.imageset/shuffle-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shuffle-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple.imageset/shuffle-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shuffle-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle.imageset/shuffle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/shuffle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle.imageset/shuffle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/shuffle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple.imageset/sidebar-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sidebar-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple.imageset/sidebar-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sidebar-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar.imageset/sidebar.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sidebar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar.imageset/sidebar.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sidebar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma.imageset/sigma.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sigma.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma.imageset/sigma.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sigma.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in.imageset/sign-in.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sign-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in.imageset/sign-in.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sign-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out.imageset/sign-out.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sign-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out.imageset/sign-out.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sign-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature.imageset/signature.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/signature.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature.imageset/signature.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/signature.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost.imageset/signpost.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/signpost.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost.imageset/signpost.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/signpost.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card.imageset/sim-card.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sim-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card.imageset/sim-card.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sim-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren.imageset/siren.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/siren.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren.imageset/siren.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/siren.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo.imageset/sketch-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sketch-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo.imageset/sketch-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sketch-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle.imageset/skip-back-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/skip-back-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle.imageset/skip-back-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/skip-back-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back.imageset/skip-back.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/skip-back.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back.imageset/skip-back.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/skip-back.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle.imageset/skip-forward-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/skip-forward-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle.imageset/skip-forward-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/skip-forward-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward.imageset/skip-forward.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/skip-forward.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward.imageset/skip-forward.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/skip-forward.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull.imageset/skull.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/skull.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull.imageset/skull.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/skull.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo.imageset/skype-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/skype-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo.imageset/skype-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/skype-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo.imageset/slack-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/slack-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo.imageset/slack-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/slack-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal.imageset/sliders-horizontal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sliders-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal.imageset/sliders-horizontal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sliders-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders.imageset/sliders.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sliders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders.imageset/sliders.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sliders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow.imageset/slideshow.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/slideshow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow.imageset/slideshow.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/slideshow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry.imageset/smiley-angry.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-angry.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry.imageset/smiley-angry.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-angry.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank.imageset/smiley-blank.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank.imageset/smiley-blank.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh.imageset/smiley-meh.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-meh.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh.imageset/smiley-meh.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-meh.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting.imageset/smiley-melting.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-melting.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting.imageset/smiley-melting.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-melting.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous.imageset/smiley-nervous.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-nervous.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous.imageset/smiley-nervous.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-nervous.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad.imageset/smiley-sad.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-sad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad.imageset/smiley-sad.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-sad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker.imageset/smiley-sticker.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-sticker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker.imageset/smiley-sticker.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-sticker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink.imageset/smiley-wink.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-wink.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink.imageset/smiley-wink.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-wink.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes.imageset/smiley-x-eyes.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-x-eyes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes.imageset/smiley-x-eyes.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley-x-eyes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley.imageset/smiley.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley.imageset/smiley.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo.imageset/snapchat-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/snapchat-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo.imageset/snapchat-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/snapchat-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move.imageset/sneaker-move.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sneaker-move.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move.imageset/sneaker-move.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sneaker-move.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker.imageset/sneaker.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sneaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker.imageset/sneaker.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sneaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake.imageset/snowflake.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/snowflake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake.imageset/snowflake.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/snowflake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball.imageset/soccer-ball.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/soccer-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball.imageset/soccer-ball.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/soccer-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock.imageset/sock.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock.imageset/sock.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel.imageset/solar-panel.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/solar-panel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel.imageset/solar-panel.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/solar-panel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof.imageset/solar-roof.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/solar-roof.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof.imageset/solar-roof.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/solar-roof.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending.imageset/sort-ascending.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sort-ascending.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending.imageset/sort-ascending.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sort-ascending.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending.imageset/sort-descending.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sort-descending.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending.imageset/sort-descending.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sort-descending.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo.imageset/soundcloud-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/soundcloud-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo.imageset/soundcloud-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/soundcloud-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade.imageset/spade.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/spade.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade.imageset/spade.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/spade.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle.imageset/sparkle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sparkle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle.imageset/sparkle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sparkle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi.imageset/speaker-hifi.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-hifi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi.imageset/speaker-hifi.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-hifi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high.imageset/speaker-high.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high.imageset/speaker-high.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low.imageset/speaker-low.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low.imageset/speaker-low.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none.imageset/speaker-none.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none.imageset/speaker-none.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high.imageset/speaker-simple-high.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-simple-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high.imageset/speaker-simple-high.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-simple-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low.imageset/speaker-simple-low.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-simple-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low.imageset/speaker-simple-low.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-simple-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none.imageset/speaker-simple-none.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-simple-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none.imageset/speaker-simple-none.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-simple-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash.imageset/speaker-simple-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash.imageset/speaker-simple-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x.imageset/speaker-simple-x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x.imageset/speaker-simple-x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash.imageset/speaker-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash.imageset/speaker-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x.imageset/speaker-x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x.imageset/speaker-x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/speaker-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer.imageset/speedometer.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/speedometer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer.imageset/speedometer.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/speedometer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere.imageset/sphere.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sphere.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere.imageset/sphere.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sphere.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball.imageset/spinner-ball.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/spinner-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball.imageset/spinner-ball.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/spinner-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap.imageset/spinner-gap.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/spinner-gap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap.imageset/spinner-gap.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/spinner-gap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner.imageset/spinner.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/spinner.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner.imageset/spinner.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/spinner.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral.imageset/spiral.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/spiral.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral.imageset/spiral.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/spiral.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal.imageset/split-horizontal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/split-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal.imageset/split-horizontal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/split-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical.imageset/split-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/split-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical.imageset/split-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/split-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo.imageset/spotify-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/spotify-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo.imageset/spotify-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/spotify-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle.imageset/spray-bottle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/spray-bottle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle.imageset/spray-bottle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/spray-bottle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom.imageset/square-half-bottom.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/square-half-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom.imageset/square-half-bottom.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/square-half-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half.imageset/square-half.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/square-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half.imageset/square-half.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/square-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo.imageset/square-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/square-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo.imageset/square-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/square-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal.imageset/square-split-horizontal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/square-split-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal.imageset/square-split-horizontal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/square-split-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical.imageset/square-split-vertical.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/square-split-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical.imageset/square-split-vertical.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/square-split-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square.imageset/square.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square.imageset/square.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four.imageset/squares-four.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/squares-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four.imageset/squares-four.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/squares-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus.imageset/stack-minus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/stack-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus.imageset/stack-minus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/stack-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo.imageset/stack-overflow-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/stack-overflow-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo.imageset/stack-overflow-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/stack-overflow-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus.imageset/stack-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/stack-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus.imageset/stack-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/stack-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple.imageset/stack-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/stack-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple.imageset/stack-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/stack-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack.imageset/stack.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/stack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack.imageset/stack.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/stack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs.imageset/stairs.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/stairs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs.imageset/stairs.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/stairs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp.imageset/stamp.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/stamp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp.imageset/stamp.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/stamp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition.imageset/standard-definition.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/standard-definition.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition.imageset/standard-definition.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/standard-definition.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent.imageset/star-and-crescent.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/star-and-crescent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent.imageset/star-and-crescent.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/star-and-crescent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four.imageset/star-four.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/star-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four.imageset/star-four.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/star-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half.imageset/star-half.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/star-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half.imageset/star-half.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/star-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david.imageset/star-of-david.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/star-of-david.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david.imageset/star-of-david.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/star-of-david.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star.imageset/star.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star.imageset/star.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo.imageset/steam-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/steam-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo.imageset/steam-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/steam-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel.imageset/steering-wheel.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/steering-wheel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel.imageset/steering-wheel.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/steering-wheel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps.imageset/steps.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/steps.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps.imageset/steps.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/steps.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope.imageset/stethoscope.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/stethoscope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope.imageset/stethoscope.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/stethoscope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker.imageset/sticker.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sticker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker.imageset/sticker.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sticker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool.imageset/stool.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/stool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool.imageset/stool.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/stool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle.imageset/stop-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/stop-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle.imageset/stop-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/stop-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop.imageset/stop.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/stop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop.imageset/stop.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/stop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront.imageset/storefront.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/storefront.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront.imageset/storefront.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/storefront.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy.imageset/strategy.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/strategy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy.imageset/strategy.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/strategy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo.imageset/stripe-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/stripe-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo.imageset/stripe-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/stripe-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student.imageset/student.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/student.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student.imageset/student.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/student.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of.imageset/subset-of.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/subset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of.imageset/subset-of.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/subset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of.imageset/subset-proper-of.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/subset-proper-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of.imageset/subset-proper-of.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/subset-proper-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash.imageset/subtitles-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/subtitles-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash.imageset/subtitles-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/subtitles-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles.imageset/subtitles.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/subtitles.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles.imageset/subtitles.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/subtitles.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square.imageset/subtract-square.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/subtract-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square.imageset/subtract-square.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/subtract-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract.imageset/subtract.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/subtract.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract.imageset/subtract.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/subtract.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway.imageset/subway.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/subway.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway.imageset/subway.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/subway.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling.imageset/suitcase-rolling.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/suitcase-rolling.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling.imageset/suitcase-rolling.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/suitcase-rolling.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple.imageset/suitcase-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/suitcase-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple.imageset/suitcase-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/suitcase-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase.imageset/suitcase.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/suitcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase.imageset/suitcase.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/suitcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim.imageset/sun-dim.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sun-dim.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim.imageset/sun-dim.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sun-dim.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon.imageset/sun-horizon.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sun-horizon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon.imageset/sun-horizon.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sun-horizon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun.imageset/sun.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sun.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun.imageset/sun.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sun.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses.imageset/sunglasses.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sunglasses.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses.imageset/sunglasses.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sunglasses.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of.imageset/superset-of.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/superset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of.imageset/superset-of.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/superset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of.imageset/superset-proper-of.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/superset-proper-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of.imageset/superset-proper-of.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/superset-proper-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap.imageset/swap.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/swap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap.imageset/swap.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/swap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches.imageset/swatches.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/swatches.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches.imageset/swatches.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/swatches.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool.imageset/swimming-pool.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/swimming-pool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool.imageset/swimming-pool.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/swimming-pool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword.imageset/sword.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/sword.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword.imageset/sword.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/sword.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue.imageset/synagogue.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/synagogue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue.imageset/synagogue.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/synagogue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe.imageset/syringe.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/syringe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe.imageset/syringe.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/syringe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt.imageset/t-shirt.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/t-shirt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt.imageset/t-shirt.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/t-shirt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table.imageset/table.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/table.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table.imageset/table.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/table.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs.imageset/tabs.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tabs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs.imageset/tabs.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tabs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron.imageset/tag-chevron.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tag-chevron.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron.imageset/tag-chevron.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tag-chevron.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple.imageset/tag-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple.imageset/tag-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag.imageset/tag.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag.imageset/tag.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target.imageset/target.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/target.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target.imageset/target.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/target.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi.imageset/taxi.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/taxi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi.imageset/taxi.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/taxi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag.imageset/tea-bag.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tea-bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag.imageset/tea-bag.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tea-bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo.imageset/telegram-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/telegram-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo.imageset/telegram-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/telegram-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple.imageset/television-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/television-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple.imageset/television-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/television-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television.imageset/television.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/television.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television.imageset/television.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/television.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball.imageset/tennis-ball.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tennis-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball.imageset/tennis-ball.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tennis-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent.imageset/tent.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent.imageset/tent.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window.imageset/terminal-window.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/terminal-window.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window.imageset/terminal-window.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/terminal-window.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal.imageset/terminal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/terminal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal.imageset/terminal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/terminal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube.imageset/test-tube.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/test-tube.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube.imageset/test-tube.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/test-tube.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline.imageset/text-a-underline.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-a-underline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline.imageset/text-a-underline.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-a-underline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa.imageset/text-aa.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-aa.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa.imageset/text-aa.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-aa.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center.imageset/text-align-center.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-align-center.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center.imageset/text-align-center.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-align-center.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify.imageset/text-align-justify.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-align-justify.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify.imageset/text-align-justify.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-align-justify.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left.imageset/text-align-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-align-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left.imageset/text-align-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-align-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right.imageset/text-align-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-align-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right.imageset/text-align-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-align-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b.imageset/text-b.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-b.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b.imageset/text-b.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-b.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns.imageset/text-columns.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-columns.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns.imageset/text-columns.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-columns.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five.imageset/text-h-five.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-h-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five.imageset/text-h-five.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-h-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four.imageset/text-h-four.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-h-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four.imageset/text-h-four.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-h-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one.imageset/text-h-one.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-h-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one.imageset/text-h-one.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-h-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six.imageset/text-h-six.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-h-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six.imageset/text-h-six.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-h-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three.imageset/text-h-three.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-h-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three.imageset/text-h-three.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-h-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two.imageset/text-h-two.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-h-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two.imageset/text-h-two.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-h-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h.imageset/text-h.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-h.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h.imageset/text-h.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-h.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent.imageset/text-indent.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-indent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent.imageset/text-indent.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-indent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic.imageset/text-italic.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-italic.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic.imageset/text-italic.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-italic.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent.imageset/text-outdent.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-outdent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent.imageset/text-outdent.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-outdent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough.imageset/text-strikethrough.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-strikethrough.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough.imageset/text-strikethrough.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-strikethrough.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript.imageset/text-subscript.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-subscript.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript.imageset/text-subscript.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-subscript.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript.imageset/text-superscript.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-superscript.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript.imageset/text-superscript.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-superscript.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash.imageset/text-t-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-t-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash.imageset/text-t-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-t-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t.imageset/text-t.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-t.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t.imageset/text-t.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-t.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline.imageset/text-underline.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-underline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline.imageset/text-underline.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/text-underline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox.imageset/textbox.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/textbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox.imageset/textbox.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/textbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold.imageset/thermometer-cold.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/thermometer-cold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold.imageset/thermometer-cold.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/thermometer-cold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot.imageset/thermometer-hot.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/thermometer-hot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot.imageset/thermometer-hot.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/thermometer-hot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple.imageset/thermometer-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/thermometer-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple.imageset/thermometer-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/thermometer-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer.imageset/thermometer.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/thermometer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer.imageset/thermometer.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/thermometer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo.imageset/threads-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/threads-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo.imageset/threads-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/threads-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d.imageset/three-d.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/three-d.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d.imageset/three-d.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/three-d.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down.imageset/thumbs-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/thumbs-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down.imageset/thumbs-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/thumbs-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up.imageset/thumbs-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/thumbs-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up.imageset/thumbs-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/thumbs-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket.imageset/ticket.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/ticket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket.imageset/ticket.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/ticket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo.imageset/tidal-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tidal-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo.imageset/tidal-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tidal-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo.imageset/tiktok-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tiktok-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo.imageset/tiktok-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tiktok-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde.imageset/tilde.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tilde.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde.imageset/tilde.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tilde.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer.imageset/timer.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/timer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer.imageset/timer.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/timer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar.imageset/tip-jar.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tip-jar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar.imageset/tip-jar.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tip-jar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi.imageset/tipi.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tipi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi.imageset/tipi.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tipi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire.imageset/tire.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire.imageset/tire.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left.imageset/toggle-left.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/toggle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left.imageset/toggle-left.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/toggle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right.imageset/toggle-right.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/toggle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right.imageset/toggle-right.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/toggle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper.imageset/toilet-paper.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/toilet-paper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper.imageset/toilet-paper.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/toilet-paper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet.imageset/toilet.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/toilet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet.imageset/toilet.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/toilet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox.imageset/toolbox.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/toolbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox.imageset/toolbox.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/toolbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth.imageset/tooth.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth.imageset/tooth.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado.imageset/tornado.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tornado.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado.imageset/tornado.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tornado.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple.imageset/tote-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tote-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple.imageset/tote-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tote-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote.imageset/tote.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tote.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote.imageset/tote.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tote.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel.imageset/towel.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/towel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel.imageset/towel.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/towel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor.imageset/tractor.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tractor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor.imageset/tractor.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tractor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered.imageset/trademark-registered.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/trademark-registered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered.imageset/trademark-registered.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/trademark-registered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark.imageset/trademark.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/trademark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark.imageset/trademark.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/trademark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone.imageset/traffic-cone.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/traffic-cone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone.imageset/traffic-cone.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/traffic-cone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign.imageset/traffic-sign.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/traffic-sign.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign.imageset/traffic-sign.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/traffic-sign.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal.imageset/traffic-signal.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/traffic-signal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal.imageset/traffic-signal.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/traffic-signal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional.imageset/train-regional.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/train-regional.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional.imageset/train-regional.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/train-regional.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple.imageset/train-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/train-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple.imageset/train-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/train-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train.imageset/train.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/train.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train.imageset/train.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/train.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram.imageset/tram.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram.imageset/tram.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate.imageset/translate.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/translate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate.imageset/translate.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/translate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple.imageset/trash-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/trash-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple.imageset/trash-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/trash-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash.imageset/trash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/trash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash.imageset/trash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/trash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down.imageset/tray-arrow-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tray-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-down.imageset/tray-arrow-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tray-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up.imageset/tray-arrow-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tray-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up.imageset/tray-arrow-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tray-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray.imageset/tray.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tray.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray.imageset/tray.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tray.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest.imageset/treasure-chest.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/treasure-chest.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest.imageset/treasure-chest.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/treasure-chest.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen.imageset/tree-evergreen.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tree-evergreen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen.imageset/tree-evergreen.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tree-evergreen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm.imageset/tree-palm.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tree-palm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm.imageset/tree-palm.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tree-palm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure.imageset/tree-structure.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tree-structure.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure.imageset/tree-structure.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tree-structure.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view.imageset/tree-view.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tree-view.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view.imageset/tree-view.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tree-view.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree.imageset/tree.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tree.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree.imageset/tree.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tree.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down.imageset/trend-down.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/trend-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down.imageset/trend-down.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/trend-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up.imageset/trend-up.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/trend-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up.imageset/trend-up.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/trend-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed.imageset/triangle-dashed.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/triangle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed.imageset/triangle-dashed.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/triangle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle.imageset/triangle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/triangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle.imageset/triangle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/triangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase.imageset/trolley-suitcase.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/trolley-suitcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase.imageset/trolley-suitcase.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/trolley-suitcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley.imageset/trolley.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/trolley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley.imageset/trolley.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/trolley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy.imageset/trophy.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/trophy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy.imageset/trophy.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/trophy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer.imageset/truck-trailer.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/truck-trailer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer.imageset/truck-trailer.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/truck-trailer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck.imageset/truck.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/truck.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck.imageset/truck.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/truck.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo.imageset/tumblr-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/tumblr-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo.imageset/tumblr-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/tumblr-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo.imageset/twitch-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/twitch-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo.imageset/twitch-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/twitch-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo.imageset/twitter-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/twitter-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo.imageset/twitter-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/twitter-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple.imageset/umbrella-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/umbrella-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple.imageset/umbrella-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/umbrella-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella.imageset/umbrella.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/umbrella.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella.imageset/umbrella.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/umbrella.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union.imageset/union.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/union.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union.imageset/union.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/union.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square.imageset/unite-square.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/unite-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square.imageset/unite-square.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/unite-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite.imageset/unite.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/unite.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite.imageset/unite.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/unite.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple.imageset/upload-simple.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/upload-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple.imageset/upload-simple.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/upload-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload.imageset/upload.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/upload.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload.imageset/upload.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/upload.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb.imageset/usb.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/usb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb.imageset/usb.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/usb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check.imageset/user-check.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check.imageset/user-check.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check.imageset/user-circle-check.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-circle-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check.imageset/user-circle-check.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-circle-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed.imageset/user-circle-dashed.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-circle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed.imageset/user-circle-dashed.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-circle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear.imageset/user-circle-gear.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-circle-gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear.imageset/user-circle-gear.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-circle-gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus.imageset/user-circle-minus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-circle-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus.imageset/user-circle-minus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-circle-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus.imageset/user-circle-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-circle-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus.imageset/user-circle-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-circle-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle.imageset/user-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle.imageset/user-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus.imageset/user-focus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-focus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus.imageset/user-focus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-focus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear.imageset/user-gear.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear.imageset/user-gear.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list.imageset/user-list.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list.imageset/user-list.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus.imageset/user-minus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus.imageset/user-minus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus.imageset/user-plus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus.imageset/user-plus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle.imageset/user-rectangle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-rectangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle.imageset/user-rectangle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-rectangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound.imageset/user-sound.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-sound.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound.imageset/user-sound.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-sound.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square.imageset/user-square.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square.imageset/user-square.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch.imageset/user-switch.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-switch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch.imageset/user-switch.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user-switch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user.imageset/user.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user.imageset/user.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four.imageset/users-four.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/users-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four.imageset/users-four.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/users-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three.imageset/users-three.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/users-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three.imageset/users-three.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/users-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users.imageset/users.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/users.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users.imageset/users.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/users.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van.imageset/van.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/van.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van.imageset/van.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/van.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault.imageset/vault.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/vault.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault.imageset/vault.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/vault.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three.imageset/vector-three.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/vector-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three.imageset/vector-three.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/vector-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two.imageset/vector-two.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/vector-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two.imageset/vector-two.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/vector-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate.imageset/vibrate.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/vibrate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate.imageset/vibrate.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/vibrate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash.imageset/video-camera-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/video-camera-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash.imageset/video-camera-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/video-camera-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera.imageset/video-camera.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/video-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera.imageset/video-camera.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/video-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference.imageset/video-conference.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/video-conference.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference.imageset/video-conference.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/video-conference.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video.imageset/video.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/video.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video.imageset/video.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/video.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette.imageset/vignette.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/vignette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette.imageset/vignette.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/vignette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record.imageset/vinyl-record.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/vinyl-record.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record.imageset/vinyl-record.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/vinyl-record.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality.imageset/virtual-reality.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/virtual-reality.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality.imageset/virtual-reality.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/virtual-reality.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus.imageset/virus.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/virus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus.imageset/virus.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/virus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor.imageset/visor.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/visor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor.imageset/visor.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/visor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail.imageset/voicemail.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/voicemail.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail.imageset/voicemail.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/voicemail.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball.imageset/volleyball.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/volleyball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball.imageset/volleyball.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/volleyball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall.imageset/wall.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wall.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall.imageset/wall.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wall.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet.imageset/wallet.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wallet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet.imageset/wallet.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wallet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse.imageset/warehouse.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/warehouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse.imageset/warehouse.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/warehouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle.imageset/warning-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/warning-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle.imageset/warning-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/warning-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond.imageset/warning-diamond.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/warning-diamond.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond.imageset/warning-diamond.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/warning-diamond.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon.imageset/warning-octagon.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/warning-octagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon.imageset/warning-octagon.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/warning-octagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning.imageset/warning.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning.imageset/warning.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine.imageset/washing-machine.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/washing-machine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine.imageset/washing-machine.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/washing-machine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch.imageset/watch.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/watch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch.imageset/watch.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/watch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth.imageset/wave-sawtooth.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wave-sawtooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth.imageset/wave-sawtooth.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wave-sawtooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine.imageset/wave-sine.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wave-sine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine.imageset/wave-sine.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wave-sine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square.imageset/wave-square.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wave-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square.imageset/wave-square.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wave-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle.imageset/wave-triangle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wave-triangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle.imageset/wave-triangle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wave-triangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash.imageset/waveform-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/waveform-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash.imageset/waveform-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/waveform-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform.imageset/waveform.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/waveform.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform.imageset/waveform.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/waveform.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves.imageset/waves.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/waves.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves.imageset/waves.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/waves.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash.imageset/webcam-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/webcam-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash.imageset/webcam-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/webcam-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam.imageset/webcam.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/webcam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam.imageset/webcam.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/webcam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo.imageset/webhooks-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/webhooks-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo.imageset/webhooks-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/webhooks-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo.imageset/wechat-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wechat-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo.imageset/wechat-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wechat-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo.imageset/whatsapp-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/whatsapp-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo.imageset/whatsapp-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/whatsapp-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion.imageset/wheelchair-motion.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wheelchair-motion.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion.imageset/wheelchair-motion.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wheelchair-motion.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair.imageset/wheelchair.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wheelchair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair.imageset/wheelchair.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wheelchair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high.imageset/wifi-high.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wifi-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high.imageset/wifi-high.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wifi-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low.imageset/wifi-low.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wifi-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low.imageset/wifi-low.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wifi-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium.imageset/wifi-medium.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wifi-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium.imageset/wifi-medium.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wifi-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none.imageset/wifi-none.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wifi-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none.imageset/wifi-none.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wifi-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash.imageset/wifi-slash.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wifi-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash.imageset/wifi-slash.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wifi-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x.imageset/wifi-x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wifi-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x.imageset/wifi-x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wifi-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind.imageset/wind.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wind.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind.imageset/wind.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wind.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill.imageset/windmill.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/windmill.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill.imageset/windmill.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/windmill.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo.imageset/windows-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/windows-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo.imageset/windows-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/windows-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine.imageset/wine.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine.imageset/wine.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench.imageset/wrench.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/wrench.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench.imageset/wrench.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/wrench.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle.imageset/x-circle.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/x-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle.imageset/x-circle.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/x-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo.imageset/x-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/x-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo.imageset/x-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/x-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square.imageset/x-square.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/x-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square.imageset/x-square.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/x-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x.imageset/x.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x.imageset/x.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn.imageset/yarn.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/yarn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn.imageset/yarn.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/yarn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang.imageset/yin-yang.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/yin-yang.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang.imageset/yin-yang.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/yin-yang.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo.imageset/youtube-logo.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/regular/youtube-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo.imageset/youtube-logo.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/regular/youtube-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-thin.imageset/acorn-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/acorn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/acorn-thin.imageset/acorn-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/acorn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-thin.imageset/address-book-tabs-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/address-book-tabs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-tabs-thin.imageset/address-book-tabs-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/address-book-tabs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-thin.imageset/address-book-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/address-book.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/address-book-thin.imageset/address-book-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/address-book.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-thin.imageset/air-traffic-control-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/air-traffic-control.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/air-traffic-control-thin.imageset/air-traffic-control-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/air-traffic-control.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-thin.imageset/airplane-in-flight-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/airplane-in-flight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-in-flight-thin.imageset/airplane-in-flight-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/airplane-in-flight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-thin.imageset/airplane-landing-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/airplane-landing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-landing-thin.imageset/airplane-landing-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/airplane-landing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-thin.imageset/airplane-takeoff-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/airplane-takeoff.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-takeoff-thin.imageset/airplane-takeoff-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/airplane-takeoff.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-thin.imageset/airplane-taxiing-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/airplane-taxiing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-taxiing-thin.imageset/airplane-taxiing-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/airplane-taxiing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-thin.imageset/airplane-tilt-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/airplane-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-tilt-thin.imageset/airplane-tilt-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/airplane-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-thin.imageset/airplane-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/airplane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplane-thin.imageset/airplane-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/airplane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-thin.imageset/airplay-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/airplay.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/airplay-thin.imageset/airplay-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/airplay.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-thin.imageset/alarm-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/alarm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alarm-thin.imageset/alarm-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/alarm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-thin.imageset/alien-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/alien.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/alien-thin.imageset/alien-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/alien.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-thin.imageset/align-bottom-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-bottom-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-simple-thin.imageset/align-bottom-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-bottom-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-thin.imageset/align-bottom-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-bottom-thin.imageset/align-bottom-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-thin.imageset/align-center-horizontal-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-center-horizontal-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-simple-thin.imageset/align-center-horizontal-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-center-horizontal-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-thin.imageset/align-center-horizontal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-center-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-horizontal-thin.imageset/align-center-horizontal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-center-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-thin.imageset/align-center-vertical-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-center-vertical-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-simple-thin.imageset/align-center-vertical-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-center-vertical-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-thin.imageset/align-center-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-center-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-center-vertical-thin.imageset/align-center-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-center-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-thin.imageset/align-left-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-left-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-simple-thin.imageset/align-left-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-left-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-thin.imageset/align-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-left-thin.imageset/align-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-thin.imageset/align-right-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-right-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-simple-thin.imageset/align-right-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-right-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-thin.imageset/align-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-right-thin.imageset/align-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-thin.imageset/align-top-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-top-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-simple-thin.imageset/align-top-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-top-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-thin.imageset/align-top-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-top.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/align-top-thin.imageset/align-top-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/align-top.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-thin.imageset/amazon-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/amazon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/amazon-logo-thin.imageset/amazon-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/amazon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-thin.imageset/ambulance-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/ambulance.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ambulance-thin.imageset/ambulance-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/ambulance.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-thin.imageset/anchor-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/anchor-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-simple-thin.imageset/anchor-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/anchor-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-thin.imageset/anchor-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/anchor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/anchor-thin.imageset/anchor-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/anchor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-thin.imageset/android-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/android-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/android-logo-thin.imageset/android-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/android-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-thin.imageset/angle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/angle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angle-thin.imageset/angle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/angle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-thin.imageset/angular-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/angular-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/angular-logo-thin.imageset/angular-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/angular-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-thin.imageset/aperture-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/aperture.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/aperture-thin.imageset/aperture-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/aperture.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-thin.imageset/app-store-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/app-store-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-store-logo-thin.imageset/app-store-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/app-store-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-thin.imageset/app-window-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/app-window.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/app-window-thin.imageset/app-window-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/app-window.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-thin.imageset/apple-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/apple-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-logo-thin.imageset/apple-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/apple-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-thin.imageset/apple-podcasts-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/apple-podcasts-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/apple-podcasts-logo-thin.imageset/apple-podcasts-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/apple-podcasts-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-thin.imageset/approximate-equals-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/approximate-equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/approximate-equals-thin.imageset/approximate-equals-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/approximate-equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-thin.imageset/archive-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/archive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-thin.imageset/archive-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/archive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-thin.imageset/armchair-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/armchair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/armchair-thin.imageset/armchair-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/armchair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-thin.imageset/arrow-arc-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-arc-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-left-thin.imageset/arrow-arc-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-arc-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-thin.imageset/arrow-arc-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-arc-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-arc-right-thin.imageset/arrow-arc-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-arc-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-thin.imageset/arrow-bend-double-up-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-double-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-left-thin.imageset/arrow-bend-double-up-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-double-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-thin.imageset/arrow-bend-double-up-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-double-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-double-up-right-thin.imageset/arrow-bend-double-up-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-double-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-thin.imageset/arrow-bend-down-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-left-thin.imageset/arrow-bend-down-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-thin.imageset/arrow-bend-down-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-down-right-thin.imageset/arrow-bend-down-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-thin.imageset/arrow-bend-left-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-down-thin.imageset/arrow-bend-left-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-thin.imageset/arrow-bend-left-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-left-up-thin.imageset/arrow-bend-left-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-thin.imageset/arrow-bend-right-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-down-thin.imageset/arrow-bend-right-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-thin.imageset/arrow-bend-right-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-right-up-thin.imageset/arrow-bend-right-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-thin.imageset/arrow-bend-up-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-left-thin.imageset/arrow-bend-up-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-thin.imageset/arrow-bend-up-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-bend-up-right-thin.imageset/arrow-bend-up-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-bend-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-thin.imageset/arrow-circle-down-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-left-thin.imageset/arrow-circle-down-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-thin.imageset/arrow-circle-down-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-right-thin.imageset/arrow-circle-down-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-thin.imageset/arrow-circle-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-down-thin.imageset/arrow-circle-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-thin.imageset/arrow-circle-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-left-thin.imageset/arrow-circle-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-thin.imageset/arrow-circle-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-right-thin.imageset/arrow-circle-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-thin.imageset/arrow-circle-up-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-left-thin.imageset/arrow-circle-up-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-thin.imageset/arrow-circle-up-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-right-thin.imageset/arrow-circle-up-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-thin.imageset/arrow-circle-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-circle-up-thin.imageset/arrow-circle-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-circle-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-thin.imageset/arrow-clockwise-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-clockwise-thin.imageset/arrow-clockwise-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-thin.imageset/arrow-counter-clockwise-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-counter-clockwise-thin.imageset/arrow-counter-clockwise-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-thin.imageset/arrow-down-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-left-thin.imageset/arrow-down-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-thin.imageset/arrow-down-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-right-thin.imageset/arrow-down-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-thin.imageset/arrow-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-down-thin.imageset/arrow-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-thin.imageset/arrow-elbow-down-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-left-thin.imageset/arrow-elbow-down-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-thin.imageset/arrow-elbow-down-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-down-right-thin.imageset/arrow-elbow-down-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-thin.imageset/arrow-elbow-left-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-down-thin.imageset/arrow-elbow-left-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-thin.imageset/arrow-elbow-left-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-up-thin.imageset/arrow-elbow-left-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-thin.imageset/arrow-elbow-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-left-thin.imageset/arrow-elbow-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-thin.imageset/arrow-elbow-right-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-down-thin.imageset/arrow-elbow-right-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-thin.imageset/arrow-elbow-right-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-up-thin.imageset/arrow-elbow-right-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-thin.imageset/arrow-elbow-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-right-thin.imageset/arrow-elbow-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-thin.imageset/arrow-elbow-up-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-left-thin.imageset/arrow-elbow-up-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-thin.imageset/arrow-elbow-up-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-elbow-up-right-thin.imageset/arrow-elbow-up-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-elbow-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-thin.imageset/arrow-fat-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-down-thin.imageset/arrow-fat-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-thin.imageset/arrow-fat-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-left-thin.imageset/arrow-fat-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-thin.imageset/arrow-fat-line-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-down-thin.imageset/arrow-fat-line-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-thin.imageset/arrow-fat-line-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-left-thin.imageset/arrow-fat-line-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-thin.imageset/arrow-fat-line-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-right-thin.imageset/arrow-fat-line-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-thin.imageset/arrow-fat-line-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-line-up-thin.imageset/arrow-fat-line-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-thin.imageset/arrow-fat-lines-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-lines-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-down-thin.imageset/arrow-fat-lines-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-lines-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-thin.imageset/arrow-fat-lines-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-lines-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-left-thin.imageset/arrow-fat-lines-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-lines-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-thin.imageset/arrow-fat-lines-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-lines-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-right-thin.imageset/arrow-fat-lines-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-lines-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-thin.imageset/arrow-fat-lines-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-lines-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-lines-up-thin.imageset/arrow-fat-lines-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-lines-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-thin.imageset/arrow-fat-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-right-thin.imageset/arrow-fat-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-thin.imageset/arrow-fat-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-fat-up-thin.imageset/arrow-fat-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-fat-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-thin.imageset/arrow-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-left-thin.imageset/arrow-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-thin.imageset/arrow-line-down-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-left-thin.imageset/arrow-line-down-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-thin.imageset/arrow-line-down-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-right-thin.imageset/arrow-line-down-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-thin.imageset/arrow-line-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-down-thin.imageset/arrow-line-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-thin.imageset/arrow-line-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-left-thin.imageset/arrow-line-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-thin.imageset/arrow-line-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-right-thin.imageset/arrow-line-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-thin.imageset/arrow-line-up-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-left-thin.imageset/arrow-line-up-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-thin.imageset/arrow-line-up-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-right-thin.imageset/arrow-line-up-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-thin.imageset/arrow-line-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-line-up-thin.imageset/arrow-line-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-thin.imageset/arrow-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-right-thin.imageset/arrow-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-thin.imageset/arrow-square-down-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-left-thin.imageset/arrow-square-down-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-thin.imageset/arrow-square-down-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-right-thin.imageset/arrow-square-down-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-thin.imageset/arrow-square-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-down-thin.imageset/arrow-square-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-thin.imageset/arrow-square-in-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-in-thin.imageset/arrow-square-in-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-thin.imageset/arrow-square-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-left-thin.imageset/arrow-square-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-thin.imageset/arrow-square-out-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-out-thin.imageset/arrow-square-out-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-thin.imageset/arrow-square-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-right-thin.imageset/arrow-square-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-thin.imageset/arrow-square-up-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-left-thin.imageset/arrow-square-up-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-thin.imageset/arrow-square-up-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-right-thin.imageset/arrow-square-up-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-thin.imageset/arrow-square-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-square-up-thin.imageset/arrow-square-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-square-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-thin.imageset/arrow-u-down-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-down-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-left-thin.imageset/arrow-u-down-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-down-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-thin.imageset/arrow-u-down-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-down-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-down-right-thin.imageset/arrow-u-down-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-down-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-thin.imageset/arrow-u-left-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-left-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-down-thin.imageset/arrow-u-left-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-left-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-thin.imageset/arrow-u-left-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-left-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-left-up-thin.imageset/arrow-u-left-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-left-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-thin.imageset/arrow-u-right-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-right-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-down-thin.imageset/arrow-u-right-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-right-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-thin.imageset/arrow-u-right-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-right-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-right-up-thin.imageset/arrow-u-right-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-right-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-thin.imageset/arrow-u-up-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-left-thin.imageset/arrow-u-up-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-thin.imageset/arrow-u-up-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-u-up-right-thin.imageset/arrow-u-up-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-u-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-thin.imageset/arrow-up-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-up-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-left-thin.imageset/arrow-up-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-up-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-thin.imageset/arrow-up-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-up-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-right-thin.imageset/arrow-up-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-up-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-thin.imageset/arrow-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrow-up-thin.imageset/arrow-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-thin.imageset/arrows-clockwise-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-clockwise-thin.imageset/arrows-clockwise-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-thin.imageset/arrows-counter-clockwise-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-counter-clockwise-thin.imageset/arrows-counter-clockwise-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-thin.imageset/arrows-down-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-down-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-down-up-thin.imageset/arrows-down-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-down-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-thin.imageset/arrows-horizontal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-horizontal-thin.imageset/arrows-horizontal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-thin.imageset/arrows-in-cardinal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-in-cardinal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-cardinal-thin.imageset/arrows-in-cardinal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-in-cardinal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-thin.imageset/arrows-in-line-horizontal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-in-line-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-horizontal-thin.imageset/arrows-in-line-horizontal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-in-line-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-thin.imageset/arrows-in-line-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-in-line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-line-vertical-thin.imageset/arrows-in-line-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-in-line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-thin.imageset/arrows-in-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-in-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-simple-thin.imageset/arrows-in-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-in-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-thin.imageset/arrows-in-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-in-thin.imageset/arrows-in-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-thin.imageset/arrows-left-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-left-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-left-right-thin.imageset/arrows-left-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-left-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-thin.imageset/arrows-merge-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-merge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-merge-thin.imageset/arrows-merge-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-merge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-thin.imageset/arrows-out-cardinal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-out-cardinal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-cardinal-thin.imageset/arrows-out-cardinal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-out-cardinal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-thin.imageset/arrows-out-line-horizontal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-out-line-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-horizontal-thin.imageset/arrows-out-line-horizontal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-out-line-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-thin.imageset/arrows-out-line-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-out-line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-line-vertical-thin.imageset/arrows-out-line-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-out-line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-thin.imageset/arrows-out-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-out-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-simple-thin.imageset/arrows-out-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-out-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-thin.imageset/arrows-out-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-out-thin.imageset/arrows-out-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-thin.imageset/arrows-split-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-split.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-split-thin.imageset/arrows-split-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-split.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-thin.imageset/arrows-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/arrows-vertical-thin.imageset/arrows-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/arrows-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-thin.imageset/article-medium-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/article-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-medium-thin.imageset/article-medium-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/article-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-thin.imageset/article-ny-times-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/article-ny-times.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-ny-times-thin.imageset/article-ny-times-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/article-ny-times.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-thin.imageset/article-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/article.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/article-thin.imageset/article-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/article.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-thin.imageset/asclepius-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/asclepius.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asclepius-thin.imageset/asclepius-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/asclepius.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-thin.imageset/asterisk-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/asterisk-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-simple-thin.imageset/asterisk-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/asterisk-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-thin.imageset/asterisk-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/asterisk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/asterisk-thin.imageset/asterisk-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/asterisk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-thin.imageset/at-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/at.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/at-thin.imageset/at-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/at.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-thin.imageset/atom-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/atom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/atom-thin.imageset/atom-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/atom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-thin.imageset/avocado-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/avocado.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/avocado-thin.imageset/avocado-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/avocado.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-thin.imageset/axe-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/axe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/axe-thin.imageset/axe-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/axe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-thin.imageset/baby-carriage-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/baby-carriage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-carriage-thin.imageset/baby-carriage-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/baby-carriage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-thin.imageset/baby-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/baby.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baby-thin.imageset/baby-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/baby.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-thin.imageset/backpack-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/backpack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backpack-thin.imageset/backpack-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/backpack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-thin.imageset/backspace-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/backspace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/backspace-thin.imageset/backspace-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/backspace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-thin.imageset/bag-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-simple-thin.imageset/bag-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-thin.imageset/bag-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bag-thin.imageset/bag-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-thin.imageset/balloon-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/balloon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/balloon-thin.imageset/balloon-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/balloon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-thin.imageset/bandaids-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bandaids.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bandaids-thin.imageset/bandaids-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bandaids.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-thin.imageset/bank-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bank-thin.imageset/bank-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-thin.imageset/barbell-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/barbell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barbell-thin.imageset/barbell-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/barbell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-thin.imageset/barcode-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/barcode.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barcode-thin.imageset/barcode-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/barcode.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-thin.imageset/barn-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/barn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barn-thin.imageset/barn-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/barn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-thin.imageset/barricade-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/barricade.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/barricade-thin.imageset/barricade-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/barricade.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-thin.imageset/baseball-cap-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/baseball-cap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-cap-thin.imageset/baseball-cap-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/baseball-cap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-thin.imageset/baseball-helmet-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/baseball-helmet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-helmet-thin.imageset/baseball-helmet-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/baseball-helmet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-thin.imageset/baseball-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/baseball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/baseball-thin.imageset/baseball-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/baseball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-thin.imageset/basket-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/basket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basket-thin.imageset/basket-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/basket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-thin.imageset/basketball-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/basketball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/basketball-thin.imageset/basketball-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/basketball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-thin.imageset/bathtub-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bathtub.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bathtub-thin.imageset/bathtub-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bathtub.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-thin.imageset/battery-charging-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-charging-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-vertical-thin.imageset/battery-charging-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-charging-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-thin.imageset/battery-charging-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-charging.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-charging-thin.imageset/battery-charging-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-charging.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-thin.imageset/battery-empty-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-empty-thin.imageset/battery-empty-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-thin.imageset/battery-full-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-full-thin.imageset/battery-full-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-thin.imageset/battery-high-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-high-thin.imageset/battery-high-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-thin.imageset/battery-low-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-low-thin.imageset/battery-low-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-thin.imageset/battery-medium-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-medium-thin.imageset/battery-medium-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-thin.imageset/battery-plus-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-plus-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-vertical-thin.imageset/battery-plus-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-plus-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-thin.imageset/battery-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-plus-thin.imageset/battery-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-thin.imageset/battery-vertical-empty-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-vertical-empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-empty-thin.imageset/battery-vertical-empty-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-vertical-empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-thin.imageset/battery-vertical-full-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-vertical-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-full-thin.imageset/battery-vertical-full-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-vertical-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-thin.imageset/battery-vertical-high-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-vertical-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-high-thin.imageset/battery-vertical-high-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-vertical-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-thin.imageset/battery-vertical-low-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-vertical-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-low-thin.imageset/battery-vertical-low-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-vertical-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-thin.imageset/battery-vertical-medium-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-vertical-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-vertical-medium-thin.imageset/battery-vertical-medium-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-vertical-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-thin.imageset/battery-warning-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-warning-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-vertical-thin.imageset/battery-warning-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-warning-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-thin.imageset/battery-warning-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/battery-warning-thin.imageset/battery-warning-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/battery-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-thin.imageset/beach-ball-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/beach-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beach-ball-thin.imageset/beach-ball-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/beach-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-thin.imageset/beanie-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/beanie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beanie-thin.imageset/beanie-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/beanie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-thin.imageset/bed-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bed-thin.imageset/bed-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-thin.imageset/beer-bottle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/beer-bottle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-bottle-thin.imageset/beer-bottle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/beer-bottle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-thin.imageset/beer-stein-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/beer-stein.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/beer-stein-thin.imageset/beer-stein-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/beer-stein.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-thin.imageset/behance-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/behance-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/behance-logo-thin.imageset/behance-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/behance-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-thin.imageset/bell-ringing-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell-ringing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-ringing-thin.imageset/bell-ringing-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell-ringing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-thin.imageset/bell-simple-ringing-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell-simple-ringing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-ringing-thin.imageset/bell-simple-ringing-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell-simple-ringing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-thin.imageset/bell-simple-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-slash-thin.imageset/bell-simple-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-thin.imageset/bell-simple-z-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell-simple-z.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-z-thin.imageset/bell-simple-z-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell-simple-z.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-thin.imageset/bell-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-simple-thin.imageset/bell-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-thin.imageset/bell-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-slash-thin.imageset/bell-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-thin.imageset/bell-z-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell-z.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-z-thin.imageset/bell-z-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell-z.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-thin.imageset/bell-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bell-thin.imageset/bell-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-thin.imageset/belt-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/belt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/belt-thin.imageset/belt-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/belt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-thin.imageset/bezier-curve-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bezier-curve.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bezier-curve-thin.imageset/bezier-curve-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bezier-curve.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-thin.imageset/bicycle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bicycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bicycle-thin.imageset/bicycle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bicycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-thin.imageset/binary-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/binary.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binary-thin.imageset/binary-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/binary.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-thin.imageset/binoculars-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/binoculars.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/binoculars-thin.imageset/binoculars-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/binoculars.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-thin.imageset/biohazard-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/biohazard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/biohazard-thin.imageset/biohazard-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/biohazard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-thin.imageset/bird-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bird.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bird-thin.imageset/bird-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bird.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-thin.imageset/blueprint-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/blueprint.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/blueprint-thin.imageset/blueprint-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/blueprint.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-thin.imageset/bluetooth-connected-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bluetooth-connected.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-connected-thin.imageset/bluetooth-connected-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bluetooth-connected.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-thin.imageset/bluetooth-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bluetooth-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-slash-thin.imageset/bluetooth-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bluetooth-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-thin.imageset/bluetooth-x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bluetooth-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-x-thin.imageset/bluetooth-x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bluetooth-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-thin.imageset/bluetooth-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bluetooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bluetooth-thin.imageset/bluetooth-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bluetooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-thin.imageset/boat-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/boat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boat-thin.imageset/boat-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/boat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-thin.imageset/bomb-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bomb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bomb-thin.imageset/bomb-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bomb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-thin.imageset/bone-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bone-thin.imageset/bone-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-thin.imageset/book-bookmark-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/book-bookmark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-bookmark-thin.imageset/book-bookmark-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/book-bookmark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-thin.imageset/book-open-text-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/book-open-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-text-thin.imageset/book-open-text-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/book-open-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-thin.imageset/book-open-user-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/book-open-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-user-thin.imageset/book-open-user-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/book-open-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-thin.imageset/book-open-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/book-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-open-thin.imageset/book-open-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/book-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-thin.imageset/book-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/book.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/book-thin.imageset/book-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/book.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-thin.imageset/bookmark-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bookmark-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-simple-thin.imageset/bookmark-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bookmark-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-thin.imageset/bookmark-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bookmark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmark-thin.imageset/bookmark-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bookmark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-thin.imageset/bookmarks-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bookmarks-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-simple-thin.imageset/bookmarks-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bookmarks-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-thin.imageset/bookmarks-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bookmarks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bookmarks-thin.imageset/bookmarks-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bookmarks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-thin.imageset/books-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/books.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/books-thin.imageset/books-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/books.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-thin.imageset/boot-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/boot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boot-thin.imageset/boot-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/boot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-thin.imageset/boules-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/boules.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boules-thin.imageset/boules-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/boules.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-thin.imageset/bounding-box-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bounding-box.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bounding-box-thin.imageset/bounding-box-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bounding-box.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-thin.imageset/bowl-food-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bowl-food.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-food-thin.imageset/bowl-food-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bowl-food.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-thin.imageset/bowl-steam-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bowl-steam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowl-steam-thin.imageset/bowl-steam-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bowl-steam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-thin.imageset/bowling-ball-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bowling-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bowling-ball-thin.imageset/bowling-ball-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bowling-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-thin.imageset/archive-box-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/box-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-box-thin.imageset/archive-box-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/box-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-thin.imageset/box-arrow-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/box-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/box-arrow-up-thin.imageset/box-arrow-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/box-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-thin.imageset/boxing-glove-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/boxing-glove.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/boxing-glove-thin.imageset/boxing-glove-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/boxing-glove.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-thin.imageset/brackets-angle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/brackets-angle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-angle-thin.imageset/brackets-angle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/brackets-angle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-thin.imageset/brackets-curly-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/brackets-curly.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-curly-thin.imageset/brackets-curly-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/brackets-curly.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-thin.imageset/brackets-round-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/brackets-round.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-round-thin.imageset/brackets-round-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/brackets-round.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-thin.imageset/brackets-square-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/brackets-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brackets-square-thin.imageset/brackets-square-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/brackets-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-thin.imageset/brain-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/brain.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brain-thin.imageset/brain-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/brain.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-thin.imageset/brandy-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/brandy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/brandy-thin.imageset/brandy-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/brandy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-thin.imageset/bread-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bread.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bread-thin.imageset/bread-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bread.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-thin.imageset/bridge-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bridge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bridge-thin.imageset/bridge-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bridge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-thin.imageset/briefcase-metal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/briefcase-metal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-metal-thin.imageset/briefcase-metal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/briefcase-metal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-thin.imageset/briefcase-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/briefcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/briefcase-thin.imageset/briefcase-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/briefcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-thin.imageset/broadcast-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/broadcast.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broadcast-thin.imageset/broadcast-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/broadcast.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-thin.imageset/broom-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/broom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/broom-thin.imageset/broom-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/broom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-thin.imageset/browser-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/browser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browser-thin.imageset/browser-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/browser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-thin.imageset/browsers-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/browsers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/browsers-thin.imageset/browsers-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/browsers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-thin.imageset/bug-beetle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bug-beetle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-beetle-thin.imageset/bug-beetle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bug-beetle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-thin.imageset/bug-droid-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bug-droid.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-droid-thin.imageset/bug-droid-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bug-droid.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-thin.imageset/bug-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bug-thin.imageset/bug-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-thin.imageset/building-apartment-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/building-apartment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-apartment-thin.imageset/building-apartment-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/building-apartment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-thin.imageset/building-office-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/building-office.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-office-thin.imageset/building-office-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/building-office.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-thin.imageset/building-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/building.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/building-thin.imageset/building-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/building.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-thin.imageset/buildings-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/buildings.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/buildings-thin.imageset/buildings-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/buildings.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-thin.imageset/bulldozer-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bulldozer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bulldozer-thin.imageset/bulldozer-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bulldozer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-thin.imageset/bus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/bus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/bus-thin.imageset/bus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/bus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-thin.imageset/butterfly-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/butterfly.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/butterfly-thin.imageset/butterfly-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/butterfly.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-thin.imageset/cable-car-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cable-car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cable-car-thin.imageset/cable-car-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cable-car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-thin.imageset/cactus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cactus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cactus-thin.imageset/cactus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cactus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-thin.imageset/cake-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cake-thin.imageset/cake-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-thin.imageset/calculator-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/calculator.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calculator-thin.imageset/calculator-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/calculator.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-thin.imageset/calendar-blank-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-blank-thin.imageset/calendar-blank-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-thin.imageset/calendar-check-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-check-thin.imageset/calendar-check-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-thin.imageset/calendar-dot-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-dot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dot-thin.imageset/calendar-dot-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-dot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-thin.imageset/calendar-dots-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-dots-thin.imageset/calendar-dots-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-thin.imageset/calendar-heart-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-heart-thin.imageset/calendar-heart-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-thin.imageset/calendar-minus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-minus-thin.imageset/calendar-minus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-thin.imageset/calendar-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-plus-thin.imageset/calendar-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-thin.imageset/calendar-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-slash-thin.imageset/calendar-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-thin.imageset/calendar-star-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-star-thin.imageset/calendar-star-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-thin.imageset/calendar-x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-x-thin.imageset/calendar-x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-thin.imageset/calendar-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/calendar-thin.imageset/calendar-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/calendar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-thin.imageset/call-bell-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/call-bell.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/call-bell-thin.imageset/call-bell-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/call-bell.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-thin.imageset/camera-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/camera-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-plus-thin.imageset/camera-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/camera-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-thin.imageset/camera-rotate-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/camera-rotate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-rotate-thin.imageset/camera-rotate-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/camera-rotate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-thin.imageset/camera-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/camera-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-slash-thin.imageset/camera-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/camera-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-thin.imageset/camera-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/camera-thin.imageset/camera-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-thin.imageset/campfire-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/campfire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/campfire-thin.imageset/campfire-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/campfire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-thin.imageset/car-battery-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/car-battery.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-battery-thin.imageset/car-battery-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/car-battery.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-thin.imageset/car-profile-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/car-profile.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-profile-thin.imageset/car-profile-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/car-profile.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-thin.imageset/car-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/car-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-simple-thin.imageset/car-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/car-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-thin.imageset/car-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/car-thin.imageset/car-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-thin.imageset/cardholder-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cardholder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cardholder-thin.imageset/cardholder-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cardholder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-thin.imageset/cards-three-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cards-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-three-thin.imageset/cards-three-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cards-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-thin.imageset/cards-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cards.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cards-thin.imageset/cards-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cards.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-thin.imageset/caret-circle-double-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-double-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-down-thin.imageset/caret-circle-double-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-double-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-thin.imageset/caret-circle-double-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-double-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-left-thin.imageset/caret-circle-double-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-double-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-thin.imageset/caret-circle-double-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-double-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-right-thin.imageset/caret-circle-double-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-double-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-thin.imageset/caret-circle-double-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-double-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-double-up-thin.imageset/caret-circle-double-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-double-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-thin.imageset/caret-circle-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-down-thin.imageset/caret-circle-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-thin.imageset/caret-circle-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-left-thin.imageset/caret-circle-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-thin.imageset/caret-circle-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-right-thin.imageset/caret-circle-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-thin.imageset/caret-circle-up-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-up-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-down-thin.imageset/caret-circle-up-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-up-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-thin.imageset/caret-circle-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-circle-up-thin.imageset/caret-circle-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-circle-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-thin.imageset/caret-double-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-double-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-down-thin.imageset/caret-double-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-double-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-thin.imageset/caret-double-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-double-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-left-thin.imageset/caret-double-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-double-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-thin.imageset/caret-double-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-double-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-right-thin.imageset/caret-double-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-double-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-thin.imageset/caret-double-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-double-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-double-up-thin.imageset/caret-double-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-double-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-thin.imageset/caret-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-down-thin.imageset/caret-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-thin.imageset/caret-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-left-thin.imageset/caret-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-thin.imageset/caret-line-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-down-thin.imageset/caret-line-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-thin.imageset/caret-line-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-line-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-left-thin.imageset/caret-line-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-line-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-thin.imageset/caret-line-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-line-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-right-thin.imageset/caret-line-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-line-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-thin.imageset/caret-line-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-line-up-thin.imageset/caret-line-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-thin.imageset/caret-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-right-thin.imageset/caret-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-thin.imageset/caret-up-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-up-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-down-thin.imageset/caret-up-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-up-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-thin.imageset/caret-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/caret-up-thin.imageset/caret-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/caret-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-thin.imageset/carrot-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/carrot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/carrot-thin.imageset/carrot-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/carrot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-thin.imageset/cash-register-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cash-register.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cash-register-thin.imageset/cash-register-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cash-register.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-thin.imageset/cassette-tape-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cassette-tape.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cassette-tape-thin.imageset/cassette-tape-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cassette-tape.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-thin.imageset/castle-turret-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/castle-turret.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/castle-turret-thin.imageset/castle-turret-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/castle-turret.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-thin.imageset/cat-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cat-thin.imageset/cat-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-thin.imageset/cell-signal-full-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-signal-full.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-full-thin.imageset/cell-signal-full-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-signal-full.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-thin.imageset/cell-signal-high-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-signal-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-high-thin.imageset/cell-signal-high-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-signal-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-thin.imageset/cell-signal-low-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-signal-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-low-thin.imageset/cell-signal-low-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-signal-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-thin.imageset/cell-signal-medium-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-signal-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-medium-thin.imageset/cell-signal-medium-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-signal-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-thin.imageset/cell-signal-none-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-signal-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-none-thin.imageset/cell-signal-none-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-signal-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-thin.imageset/cell-signal-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-signal-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-slash-thin.imageset/cell-signal-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-signal-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-thin.imageset/cell-signal-x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-signal-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-signal-x-thin.imageset/cell-signal-x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-signal-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-thin.imageset/cell-tower-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cell-tower-thin.imageset/cell-tower-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cell-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-thin.imageset/certificate-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/certificate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/certificate-thin.imageset/certificate-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/certificate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-thin.imageset/chair-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chair-thin.imageset/chair-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-thin.imageset/chalkboard-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chalkboard-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-simple-thin.imageset/chalkboard-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chalkboard-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-thin.imageset/chalkboard-teacher-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chalkboard-teacher.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-teacher-thin.imageset/chalkboard-teacher-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chalkboard-teacher.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-thin.imageset/chalkboard-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chalkboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chalkboard-thin.imageset/chalkboard-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chalkboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-thin.imageset/champagne-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/champagne.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/champagne-thin.imageset/champagne-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/champagne.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-thin.imageset/charging-station-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/charging-station.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/charging-station-thin.imageset/charging-station-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/charging-station.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-thin.imageset/chart-bar-horizontal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-bar-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-horizontal-thin.imageset/chart-bar-horizontal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-bar-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-thin.imageset/chart-bar-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-bar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-bar-thin.imageset/chart-bar-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-bar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-thin.imageset/chart-donut-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-donut.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-donut-thin.imageset/chart-donut-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-donut.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-thin.imageset/chart-line-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-line-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-down-thin.imageset/chart-line-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-line-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-thin.imageset/chart-line-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-line-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-up-thin.imageset/chart-line-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-line-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-thin.imageset/chart-line-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-line-thin.imageset/chart-line-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-thin.imageset/chart-pie-slice-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-pie-slice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-slice-thin.imageset/chart-pie-slice-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-pie-slice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-thin.imageset/chart-pie-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-pie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-pie-thin.imageset/chart-pie-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-pie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-thin.imageset/chart-polar-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-polar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-polar-thin.imageset/chart-polar-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-polar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-thin.imageset/chart-scatter-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-scatter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chart-scatter-thin.imageset/chart-scatter-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chart-scatter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-thin.imageset/chat-centered-dots-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-centered-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-dots-thin.imageset/chat-centered-dots-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-centered-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-thin.imageset/chat-centered-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-centered-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-slash-thin.imageset/chat-centered-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-centered-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-thin.imageset/chat-centered-text-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-centered-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-text-thin.imageset/chat-centered-text-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-centered-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-thin.imageset/chat-centered-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-centered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-centered-thin.imageset/chat-centered-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-centered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-thin.imageset/chat-circle-dots-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-circle-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-dots-thin.imageset/chat-circle-dots-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-circle-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-thin.imageset/chat-circle-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-circle-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-slash-thin.imageset/chat-circle-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-circle-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-thin.imageset/chat-circle-text-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-circle-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-text-thin.imageset/chat-circle-text-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-circle-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-thin.imageset/chat-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-circle-thin.imageset/chat-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-thin.imageset/chat-dots-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-dots-thin.imageset/chat-dots-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-thin.imageset/chat-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-slash-thin.imageset/chat-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-thin.imageset/chat-teardrop-dots-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-teardrop-dots.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-dots-thin.imageset/chat-teardrop-dots-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-teardrop-dots.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-thin.imageset/chat-teardrop-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-teardrop-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-slash-thin.imageset/chat-teardrop-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-teardrop-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-thin.imageset/chat-teardrop-text-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-teardrop-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-text-thin.imageset/chat-teardrop-text-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-teardrop-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-thin.imageset/chat-teardrop-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-teardrop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-teardrop-thin.imageset/chat-teardrop-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-teardrop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-thin.imageset/chat-text-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-text-thin.imageset/chat-text-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-thin.imageset/chat-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chat-thin.imageset/chat-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-thin.imageset/chats-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chats-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-circle-thin.imageset/chats-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chats-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-thin.imageset/chats-teardrop-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chats-teardrop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-teardrop-thin.imageset/chats-teardrop-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chats-teardrop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-thin.imageset/chats-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chats.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chats-thin.imageset/chats-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chats.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-thin.imageset/check-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/check-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-circle-thin.imageset/check-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/check-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-thin.imageset/check-fat-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/check-fat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-fat-thin.imageset/check-fat-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/check-fat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-thin.imageset/check-square-offset-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/check-square-offset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-offset-thin.imageset/check-square-offset-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/check-square-offset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-thin.imageset/check-square-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/check-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-square-thin.imageset/check-square-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/check-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-thin.imageset/check-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/check-thin.imageset/check-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-thin.imageset/checkerboard-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/checkerboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checkerboard-thin.imageset/checkerboard-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/checkerboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-thin.imageset/checks-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/checks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/checks-thin.imageset/checks-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/checks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-thin.imageset/cheers-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cheers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheers-thin.imageset/cheers-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cheers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-thin.imageset/cheese-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cheese.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cheese-thin.imageset/cheese-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cheese.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-thin.imageset/chef-hat-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/chef-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/chef-hat-thin.imageset/chef-hat-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/chef-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-thin.imageset/cherries-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cherries.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cherries-thin.imageset/cherries-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cherries.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-thin.imageset/church-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/church.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/church-thin.imageset/church-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/church.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-thin.imageset/cigarette-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cigarette-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-slash-thin.imageset/cigarette-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cigarette-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-thin.imageset/cigarette-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cigarette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cigarette-thin.imageset/cigarette-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cigarette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-thin.imageset/circle-dashed-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/circle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-dashed-thin.imageset/circle-dashed-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/circle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-thin.imageset/circle-half-tilt-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/circle-half-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-tilt-thin.imageset/circle-half-tilt-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/circle-half-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-thin.imageset/circle-half-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/circle-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-half-thin.imageset/circle-half-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/circle-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-thin.imageset/circle-notch-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/circle-notch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-notch-thin.imageset/circle-notch-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/circle-notch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-thin.imageset/circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circle-thin.imageset/circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-thin.imageset/circles-four-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/circles-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-four-thin.imageset/circles-four-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/circles-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-thin.imageset/circles-three-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/circles-three-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-plus-thin.imageset/circles-three-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/circles-three-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-thin.imageset/circles-three-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/circles-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circles-three-thin.imageset/circles-three-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/circles-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-thin.imageset/circuitry-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/circuitry.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/circuitry-thin.imageset/circuitry-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/circuitry.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-thin.imageset/city-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/city.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/city-thin.imageset/city-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/city.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-thin.imageset/clipboard-text-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/clipboard-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-text-thin.imageset/clipboard-text-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/clipboard-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-thin.imageset/clipboard-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/clipboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clipboard-thin.imageset/clipboard-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/clipboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-thin.imageset/clock-afternoon-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/clock-afternoon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-afternoon-thin.imageset/clock-afternoon-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/clock-afternoon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-thin.imageset/clock-clockwise-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/clock-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-clockwise-thin.imageset/clock-clockwise-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/clock-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-thin.imageset/clock-countdown-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/clock-countdown.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-countdown-thin.imageset/clock-countdown-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/clock-countdown.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-thin.imageset/clock-counter-clockwise-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/clock-counter-clockwise.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-counter-clockwise-thin.imageset/clock-counter-clockwise-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/clock-counter-clockwise.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-thin.imageset/clock-user-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/clock-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-user-thin.imageset/clock-user-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/clock-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-thin.imageset/clock-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/clock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clock-thin.imageset/clock-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/clock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-thin.imageset/closed-captioning-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/closed-captioning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/closed-captioning-thin.imageset/closed-captioning-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/closed-captioning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-thin.imageset/cloud-arrow-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-down-thin.imageset/cloud-arrow-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-thin.imageset/cloud-arrow-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-arrow-up-thin.imageset/cloud-arrow-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-thin.imageset/cloud-check-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-check-thin.imageset/cloud-check-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-thin.imageset/cloud-fog-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-fog.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-fog-thin.imageset/cloud-fog-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-fog.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-thin.imageset/cloud-lightning-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-lightning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-lightning-thin.imageset/cloud-lightning-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-lightning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-thin.imageset/cloud-moon-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-moon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-moon-thin.imageset/cloud-moon-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-moon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-thin.imageset/cloud-rain-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-rain.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-rain-thin.imageset/cloud-rain-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-rain.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-thin.imageset/cloud-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-slash-thin.imageset/cloud-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-thin.imageset/cloud-snow-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-snow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-snow-thin.imageset/cloud-snow-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-snow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-thin.imageset/cloud-sun-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-sun.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-sun-thin.imageset/cloud-sun-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-sun.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-thin.imageset/cloud-warning-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-warning-thin.imageset/cloud-warning-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-thin.imageset/cloud-x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-x-thin.imageset/cloud-x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-thin.imageset/cloud-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cloud-thin.imageset/cloud-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-thin.imageset/clover-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/clover.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/clover-thin.imageset/clover-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/clover.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-thin.imageset/club-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/club.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/club-thin.imageset/club-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/club.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-thin.imageset/coat-hanger-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/coat-hanger.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coat-hanger-thin.imageset/coat-hanger-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/coat-hanger.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-thin.imageset/coda-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/coda-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coda-logo-thin.imageset/coda-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/coda-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-thin.imageset/code-block-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/code-block.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-block-thin.imageset/code-block-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/code-block.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-thin.imageset/code-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/code-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-simple-thin.imageset/code-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/code-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-thin.imageset/code-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/code-thin.imageset/code-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-thin.imageset/codepen-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/codepen-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codepen-logo-thin.imageset/codepen-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/codepen-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-thin.imageset/codesandbox-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/codesandbox-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/codesandbox-logo-thin.imageset/codesandbox-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/codesandbox-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-thin.imageset/coffee-bean-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/coffee-bean.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-bean-thin.imageset/coffee-bean-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/coffee-bean.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-thin.imageset/coffee-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/coffee.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coffee-thin.imageset/coffee-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/coffee.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-thin.imageset/coin-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/coin-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-vertical-thin.imageset/coin-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/coin-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-thin.imageset/coin-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/coin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coin-thin.imageset/coin-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/coin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-thin.imageset/coins-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/coins.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/coins-thin.imageset/coins-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/coins.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-thin.imageset/columns-plus-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/columns-plus-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-left-thin.imageset/columns-plus-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/columns-plus-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-thin.imageset/columns-plus-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/columns-plus-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-plus-right-thin.imageset/columns-plus-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/columns-plus-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-thin.imageset/columns-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/columns.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/columns-thin.imageset/columns-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/columns.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-thin.imageset/command-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/command.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/command-thin.imageset/command-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/command.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-thin.imageset/compass-rose-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/compass-rose.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-rose-thin.imageset/compass-rose-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/compass-rose.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-thin.imageset/compass-tool-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/compass-tool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-tool-thin.imageset/compass-tool-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/compass-tool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-thin.imageset/compass-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/compass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/compass-thin.imageset/compass-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/compass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-thin.imageset/computer-tower-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/computer-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/computer-tower-thin.imageset/computer-tower-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/computer-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-thin.imageset/confetti-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/confetti.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/confetti-thin.imageset/confetti-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/confetti.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-thin.imageset/contactless-payment-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/contactless-payment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/contactless-payment-thin.imageset/contactless-payment-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/contactless-payment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-thin.imageset/control-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/control.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/control-thin.imageset/control-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/control.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-thin.imageset/cookie-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cookie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cookie-thin.imageset/cookie-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cookie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-thin.imageset/cooking-pot-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cooking-pot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cooking-pot-thin.imageset/cooking-pot-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cooking-pot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-thin.imageset/copy-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/copy-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-simple-thin.imageset/copy-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/copy-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-thin.imageset/copy-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/copy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copy-thin.imageset/copy-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/copy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-thin.imageset/copyleft-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/copyleft.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyleft-thin.imageset/copyleft-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/copyleft.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-thin.imageset/copyright-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/copyright.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/copyright-thin.imageset/copyright-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/copyright.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-thin.imageset/corners-in-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/corners-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-in-thin.imageset/corners-in-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/corners-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-thin.imageset/corners-out-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/corners-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/corners-out-thin.imageset/corners-out-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/corners-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-thin.imageset/couch-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/couch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/couch-thin.imageset/couch-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/couch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-thin.imageset/court-basketball-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/court-basketball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/court-basketball-thin.imageset/court-basketball-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/court-basketball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-thin.imageset/cow-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cow-thin.imageset/cow-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-thin.imageset/cowboy-hat-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cowboy-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cowboy-hat-thin.imageset/cowboy-hat-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cowboy-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-thin.imageset/cpu-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cpu.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cpu-thin.imageset/cpu-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cpu.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-thin.imageset/crane-tower-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/crane-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-tower-thin.imageset/crane-tower-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/crane-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-thin.imageset/crane-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/crane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crane-thin.imageset/crane-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/crane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-thin.imageset/credit-card-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/credit-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/credit-card-thin.imageset/credit-card-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/credit-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-thin.imageset/cricket-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cricket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cricket-thin.imageset/cricket-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cricket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-thin.imageset/crop-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/crop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crop-thin.imageset/crop-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/crop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-thin.imageset/cross-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cross.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cross-thin.imageset/cross-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cross.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-thin.imageset/crosshair-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/crosshair-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-simple-thin.imageset/crosshair-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/crosshair-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-thin.imageset/crosshair-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/crosshair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crosshair-thin.imageset/crosshair-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/crosshair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-thin.imageset/crown-cross-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/crown-cross.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-cross-thin.imageset/crown-cross-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/crown-cross.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-thin.imageset/crown-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/crown-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-simple-thin.imageset/crown-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/crown-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-thin.imageset/crown-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/crown.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/crown-thin.imageset/crown-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/crown.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-thin.imageset/cube-focus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cube-focus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-focus-thin.imageset/cube-focus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cube-focus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-thin.imageset/cube-transparent-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cube-transparent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-transparent-thin.imageset/cube-transparent-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cube-transparent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-thin.imageset/cube-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cube.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cube-thin.imageset/cube-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cube.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-thin.imageset/currency-btc-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-btc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-btc-thin.imageset/currency-btc-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-btc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-thin.imageset/currency-circle-dollar-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-circle-dollar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-circle-dollar-thin.imageset/currency-circle-dollar-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-circle-dollar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-thin.imageset/currency-cny-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-cny.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-cny-thin.imageset/currency-cny-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-cny.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-thin.imageset/currency-dollar-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-dollar-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-simple-thin.imageset/currency-dollar-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-dollar-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-thin.imageset/currency-dollar-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-dollar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-dollar-thin.imageset/currency-dollar-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-dollar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-thin.imageset/currency-eth-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-eth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eth-thin.imageset/currency-eth-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-eth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-thin.imageset/currency-eur-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-eur.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-eur-thin.imageset/currency-eur-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-eur.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-thin.imageset/currency-gbp-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-gbp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-gbp-thin.imageset/currency-gbp-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-gbp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-thin.imageset/currency-inr-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-inr.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-inr-thin.imageset/currency-inr-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-inr.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-thin.imageset/currency-jpy-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-jpy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-jpy-thin.imageset/currency-jpy-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-jpy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-thin.imageset/currency-krw-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-krw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-krw-thin.imageset/currency-krw-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-krw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-thin.imageset/currency-kzt-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-kzt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-kzt-thin.imageset/currency-kzt-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-kzt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-thin.imageset/currency-ngn-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-ngn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-ngn-thin.imageset/currency-ngn-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-ngn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-thin.imageset/currency-rub-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-rub.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/currency-rub-thin.imageset/currency-rub-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/currency-rub.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-thin.imageset/cursor-click-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cursor-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-click-thin.imageset/cursor-click-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cursor-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-thin.imageset/cursor-text-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cursor-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-text-thin.imageset/cursor-text-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cursor-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-thin.imageset/cursor-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cursor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cursor-thin.imageset/cursor-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cursor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-thin.imageset/cylinder-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/cylinder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/cylinder-thin.imageset/cylinder-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/cylinder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-thin.imageset/database-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/database.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/database-thin.imageset/database-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/database.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-thin.imageset/desk-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/desk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desk-thin.imageset/desk-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/desk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-thin.imageset/desktop-tower-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/desktop-tower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-tower-thin.imageset/desktop-tower-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/desktop-tower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-thin.imageset/desktop-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/desktop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/desktop-thin.imageset/desktop-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/desktop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-thin.imageset/detective-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/detective.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/detective-thin.imageset/detective-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/detective.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-thin.imageset/dev-to-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dev-to-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dev-to-logo-thin.imageset/dev-to-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dev-to-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-thin.imageset/device-mobile-camera-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-mobile-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-camera-thin.imageset/device-mobile-camera-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-mobile-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-thin.imageset/device-mobile-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-mobile-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-slash-thin.imageset/device-mobile-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-mobile-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-thin.imageset/device-mobile-speaker-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-mobile-speaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-speaker-thin.imageset/device-mobile-speaker-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-mobile-speaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-thin.imageset/device-mobile-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-mobile.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-mobile-thin.imageset/device-mobile-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-mobile.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-thin.imageset/device-rotate-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-rotate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-rotate-thin.imageset/device-rotate-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-rotate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-thin.imageset/device-tablet-camera-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-tablet-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-camera-thin.imageset/device-tablet-camera-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-tablet-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-thin.imageset/device-tablet-speaker-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-tablet-speaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-speaker-thin.imageset/device-tablet-speaker-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-tablet-speaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-thin.imageset/device-tablet-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-tablet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/device-tablet-thin.imageset/device-tablet-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/device-tablet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-thin.imageset/devices-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/devices.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/devices-thin.imageset/devices-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/devices.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-thin.imageset/diamond-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/diamond.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamond-thin.imageset/diamond-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/diamond.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-thin.imageset/diamonds-four-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/diamonds-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/diamonds-four-thin.imageset/diamonds-four-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/diamonds-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-thin.imageset/dice-five-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dice-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-five-thin.imageset/dice-five-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dice-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-thin.imageset/dice-four-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dice-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-four-thin.imageset/dice-four-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dice-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-thin.imageset/dice-one-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dice-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-one-thin.imageset/dice-one-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dice-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-thin.imageset/dice-six-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dice-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-six-thin.imageset/dice-six-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dice-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-thin.imageset/dice-three-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dice-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-three-thin.imageset/dice-three-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dice-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-thin.imageset/dice-two-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dice-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dice-two-thin.imageset/dice-two-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dice-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-thin.imageset/disc-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/disc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disc-thin.imageset/disc-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/disc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-thin.imageset/disco-ball-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/disco-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/disco-ball-thin.imageset/disco-ball-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/disco-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-thin.imageset/discord-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/discord-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/discord-logo-thin.imageset/discord-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/discord-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-thin.imageset/divide-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/divide.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/divide-thin.imageset/divide-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/divide.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-thin.imageset/dna-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dna.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dna-thin.imageset/dna-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dna.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-thin.imageset/dog-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dog.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dog-thin.imageset/dog-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dog.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-thin.imageset/door-open-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/door-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-open-thin.imageset/door-open-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/door-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-thin.imageset/door-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/door.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/door-thin.imageset/door-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/door.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-thin.imageset/dot-outline-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dot-outline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-outline-thin.imageset/dot-outline-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dot-outline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-thin.imageset/dot-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dot-thin.imageset/dot-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-thin.imageset/dots-nine-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-nine-thin.imageset/dots-nine-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-thin.imageset/dots-six-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-six-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-vertical-thin.imageset/dots-six-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-six-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-thin.imageset/dots-six-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-six-thin.imageset/dots-six-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-thin.imageset/dots-three-circle-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-three-circle-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-vertical-thin.imageset/dots-three-circle-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-three-circle-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-thin.imageset/dots-three-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-three-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-circle-thin.imageset/dots-three-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-three-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-thin.imageset/dots-three-outline-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-three-outline-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-vertical-thin.imageset/dots-three-outline-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-three-outline-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-thin.imageset/dots-three-outline-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-three-outline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-outline-thin.imageset/dots-three-outline-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-three-outline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-thin.imageset/dots-three-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-three-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-vertical-thin.imageset/dots-three-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-three-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-thin.imageset/dots-three-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dots-three-thin.imageset/dots-three-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dots-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-thin.imageset/download-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/download-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-simple-thin.imageset/download-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/download-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-thin.imageset/download-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/download.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/download-thin.imageset/download-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/download.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-thin.imageset/dress-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dress.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dress-thin.imageset/dress-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dress.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-thin.imageset/dresser-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dresser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dresser-thin.imageset/dresser-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dresser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-thin.imageset/dribbble-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dribbble-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dribbble-logo-thin.imageset/dribbble-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dribbble-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-thin.imageset/drone-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/drone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drone-thin.imageset/drone-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/drone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-thin.imageset/drop-half-bottom-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/drop-half-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-bottom-thin.imageset/drop-half-bottom-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/drop-half-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-thin.imageset/drop-half-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/drop-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-half-thin.imageset/drop-half-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/drop-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-thin.imageset/drop-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/drop-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-simple-thin.imageset/drop-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/drop-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-thin.imageset/drop-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/drop-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-slash-thin.imageset/drop-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/drop-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-thin.imageset/drop-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/drop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/drop-thin.imageset/drop-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/drop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-thin.imageset/dropbox-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/dropbox-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/dropbox-logo-thin.imageset/dropbox-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/dropbox-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-thin.imageset/ear-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/ear-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-slash-thin.imageset/ear-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/ear-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-thin.imageset/ear-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/ear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ear-thin.imageset/ear-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/ear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-thin.imageset/egg-crack-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/egg-crack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-crack-thin.imageset/egg-crack-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/egg-crack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-thin.imageset/egg-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/egg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/egg-thin.imageset/egg-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/egg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-thin.imageset/eject-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/eject-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-simple-thin.imageset/eject-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/eject-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-thin.imageset/eject-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/eject.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eject-thin.imageset/eject-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/eject.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-thin.imageset/elevator-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/elevator.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/elevator-thin.imageset/elevator-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/elevator.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-thin.imageset/empty-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/empty.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/empty-thin.imageset/empty-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/empty.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-thin.imageset/engine-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/engine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/engine-thin.imageset/engine-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/engine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-thin.imageset/envelope-open-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/envelope-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-open-thin.imageset/envelope-open-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/envelope-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-thin.imageset/envelope-simple-open-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/envelope-simple-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-open-thin.imageset/envelope-simple-open-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/envelope-simple-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-thin.imageset/envelope-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/envelope-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-simple-thin.imageset/envelope-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/envelope-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-thin.imageset/envelope-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/envelope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/envelope-thin.imageset/envelope-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/envelope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-thin.imageset/equalizer-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/equalizer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equalizer-thin.imageset/equalizer-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/equalizer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-thin.imageset/equals-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/equals-thin.imageset/equals-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-thin.imageset/eraser-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/eraser.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eraser-thin.imageset/eraser-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/eraser.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-thin.imageset/escalator-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/escalator-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-down-thin.imageset/escalator-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/escalator-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-thin.imageset/escalator-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/escalator-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/escalator-up-thin.imageset/escalator-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/escalator-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-thin.imageset/exam-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/exam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exam-thin.imageset/exam-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/exam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-thin.imageset/exclamation-mark-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/exclamation-mark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclamation-mark-thin.imageset/exclamation-mark-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/exclamation-mark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-thin.imageset/exclude-square-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/exclude-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-square-thin.imageset/exclude-square-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/exclude-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-thin.imageset/exclude-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/exclude.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/exclude-thin.imageset/exclude-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/exclude.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-thin.imageset/export-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/export.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/export-thin.imageset/export-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/export.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-thin.imageset/eye-closed-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/eye-closed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-closed-thin.imageset/eye-closed-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/eye-closed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-thin.imageset/eye-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/eye-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-slash-thin.imageset/eye-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/eye-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-thin.imageset/eye-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/eye.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eye-thin.imageset/eye-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/eye.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-thin.imageset/eyedropper-sample-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/eyedropper-sample.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-sample-thin.imageset/eyedropper-sample-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/eyedropper-sample.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-thin.imageset/eyedropper-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/eyedropper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyedropper-thin.imageset/eyedropper-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/eyedropper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-thin.imageset/eyeglasses-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/eyeglasses.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyeglasses-thin.imageset/eyeglasses-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/eyeglasses.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-thin.imageset/eyes-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/eyes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/eyes-thin.imageset/eyes-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/eyes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-thin.imageset/face-mask-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/face-mask.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/face-mask-thin.imageset/face-mask-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/face-mask.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-thin.imageset/facebook-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/facebook-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/facebook-logo-thin.imageset/facebook-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/facebook-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-thin.imageset/factory-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/factory.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/factory-thin.imageset/factory-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/factory.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-thin.imageset/faders-horizontal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/faders-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-horizontal-thin.imageset/faders-horizontal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/faders-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-thin.imageset/faders-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/faders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/faders-thin.imageset/faders-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/faders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-thin.imageset/fallout-shelter-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/fallout-shelter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fallout-shelter-thin.imageset/fallout-shelter-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/fallout-shelter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-thin.imageset/fan-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/fan.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fan-thin.imageset/fan-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/fan.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-thin.imageset/farm-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/farm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/farm-thin.imageset/farm-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/farm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-thin.imageset/fast-forward-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/fast-forward-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-circle-thin.imageset/fast-forward-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/fast-forward-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-thin.imageset/fast-forward-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/fast-forward.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fast-forward-thin.imageset/fast-forward-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/fast-forward.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-thin.imageset/feather-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/feather.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/feather-thin.imageset/feather-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/feather.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-thin.imageset/fediverse-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/fediverse-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fediverse-logo-thin.imageset/fediverse-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/fediverse-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-thin.imageset/figma-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/figma-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/figma-logo-thin.imageset/figma-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/figma-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-thin.imageset/file-archive-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-archive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-archive-thin.imageset/file-archive-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-archive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-thin.imageset/file-arrow-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-down-thin.imageset/file-arrow-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-thin.imageset/file-arrow-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-arrow-up-thin.imageset/file-arrow-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-thin.imageset/file-audio-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-audio.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-audio-thin.imageset/file-audio-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-audio.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-thin.imageset/file-c-sharp-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-c-sharp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-sharp-thin.imageset/file-c-sharp-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-c-sharp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-thin.imageset/file-c-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-c.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-c-thin.imageset/file-c-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-c.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-thin.imageset/file-cloud-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cloud-thin.imageset/file-cloud-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-thin.imageset/file-code-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-code-thin.imageset/file-code-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-thin.imageset/file-cpp-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-cpp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-cpp-thin.imageset/file-cpp-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-cpp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-thin.imageset/file-css-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-css.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-css-thin.imageset/file-css-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-css.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-thin.imageset/file-csv-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-csv.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-csv-thin.imageset/file-csv-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-csv.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-thin.imageset/file-dashed-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-dashed-thin.imageset/file-dashed-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-thin.imageset/file-doc-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-doc.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-doc-thin.imageset/file-doc-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-doc.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-thin.imageset/file-html-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-html.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-html-thin.imageset/file-html-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-html.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-thin.imageset/file-image-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-image.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-image-thin.imageset/file-image-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-image.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-thin.imageset/file-ini-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-ini.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ini-thin.imageset/file-ini-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-ini.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-thin.imageset/file-jpg-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-jpg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jpg-thin.imageset/file-jpg-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-jpg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-thin.imageset/file-js-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-js.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-js-thin.imageset/file-js-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-js.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-thin.imageset/file-jsx-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-jsx.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-jsx-thin.imageset/file-jsx-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-jsx.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-thin.imageset/file-lock-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-lock-thin.imageset/file-lock-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-thin.imageset/file-magnifying-glass-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-magnifying-glass-thin.imageset/file-magnifying-glass-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-thin.imageset/file-md-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-md.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-md-thin.imageset/file-md-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-md.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-thin.imageset/file-minus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-minus-thin.imageset/file-minus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-thin.imageset/file-pdf-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-pdf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-pdf-thin.imageset/file-pdf-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-pdf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-thin.imageset/file-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-plus-thin.imageset/file-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-thin.imageset/file-png-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-png.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-png-thin.imageset/file-png-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-png.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-thin.imageset/file-ppt-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-ppt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ppt-thin.imageset/file-ppt-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-ppt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-thin.imageset/file-py-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-py.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-py-thin.imageset/file-py-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-py.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-thin.imageset/file-rs-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-rs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-rs-thin.imageset/file-rs-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-rs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-thin.imageset/file-sql-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-sql.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-sql-thin.imageset/file-sql-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-sql.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-thin.imageset/file-svg-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-svg.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-svg-thin.imageset/file-svg-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-svg.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-thin.imageset/file-text-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-text.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-text-thin.imageset/file-text-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-text.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-thin.imageset/file-ts-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-ts.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-ts-thin.imageset/file-ts-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-ts.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-thin.imageset/file-tsx-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-tsx.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-tsx-thin.imageset/file-tsx-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-tsx.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-thin.imageset/file-txt-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-txt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-txt-thin.imageset/file-txt-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-txt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-thin.imageset/file-video-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-video.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-video-thin.imageset/file-video-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-video.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-thin.imageset/file-vue-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-vue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-vue-thin.imageset/file-vue-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-vue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-thin.imageset/file-x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-x-thin.imageset/file-x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-thin.imageset/file-xls-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-xls.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-xls-thin.imageset/file-xls-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-xls.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-thin.imageset/file-zip-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-zip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-zip-thin.imageset/file-zip-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file-zip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-thin.imageset/file-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/file.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/file-thin.imageset/file-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/file.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-thin.imageset/files-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/files.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/files-thin.imageset/files-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/files.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-thin.imageset/film-reel-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/film-reel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-reel-thin.imageset/film-reel-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/film-reel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-thin.imageset/film-script-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/film-script.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-script-thin.imageset/film-script-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/film-script.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-thin.imageset/film-slate-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/film-slate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-slate-thin.imageset/film-slate-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/film-slate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-thin.imageset/film-strip-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/film-strip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/film-strip-thin.imageset/film-strip-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/film-strip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-thin.imageset/fingerprint-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/fingerprint-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-simple-thin.imageset/fingerprint-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/fingerprint-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-thin.imageset/fingerprint-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/fingerprint.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fingerprint-thin.imageset/fingerprint-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/fingerprint.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-thin.imageset/finn-the-human-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/finn-the-human.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/finn-the-human-thin.imageset/finn-the-human-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/finn-the-human.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-thin.imageset/fire-extinguisher-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/fire-extinguisher.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-extinguisher-thin.imageset/fire-extinguisher-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/fire-extinguisher.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-thin.imageset/fire-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/fire-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-simple-thin.imageset/fire-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/fire-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-thin.imageset/fire-truck-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/fire-truck.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-truck-thin.imageset/fire-truck-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/fire-truck.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-thin.imageset/fire-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/fire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fire-thin.imageset/fire-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/fire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-thin.imageset/first-aid-kit-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/first-aid-kit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-kit-thin.imageset/first-aid-kit-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/first-aid-kit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-thin.imageset/first-aid-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/first-aid.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/first-aid-thin.imageset/first-aid-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/first-aid.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-thin.imageset/fish-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/fish-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-simple-thin.imageset/fish-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/fish-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-thin.imageset/fish-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/fish.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fish-thin.imageset/fish-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/fish.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-thin.imageset/flag-banner-fold-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/flag-banner-fold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-fold-thin.imageset/flag-banner-fold-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/flag-banner-fold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-thin.imageset/flag-banner-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/flag-banner.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-banner-thin.imageset/flag-banner-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/flag-banner.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-thin.imageset/flag-checkered-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/flag-checkered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-checkered-thin.imageset/flag-checkered-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/flag-checkered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-thin.imageset/flag-pennant-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/flag-pennant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-pennant-thin.imageset/flag-pennant-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/flag-pennant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-thin.imageset/flag-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/flag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flag-thin.imageset/flag-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/flag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-thin.imageset/flame-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/flame.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flame-thin.imageset/flame-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/flame.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-thin.imageset/flashlight-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/flashlight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flashlight-thin.imageset/flashlight-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/flashlight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-thin.imageset/flask-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/flask.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flask-thin.imageset/flask-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/flask.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-thin.imageset/flip-horizontal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/flip-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-horizontal-thin.imageset/flip-horizontal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/flip-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-thin.imageset/flip-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/flip-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flip-vertical-thin.imageset/flip-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/flip-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-thin.imageset/floppy-disk-back-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/floppy-disk-back.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-back-thin.imageset/floppy-disk-back-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/floppy-disk-back.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-thin.imageset/floppy-disk-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/floppy-disk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/floppy-disk-thin.imageset/floppy-disk-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/floppy-disk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-thin.imageset/flow-arrow-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/flow-arrow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flow-arrow-thin.imageset/flow-arrow-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/flow-arrow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-thin.imageset/flower-lotus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/flower-lotus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-lotus-thin.imageset/flower-lotus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/flower-lotus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-thin.imageset/flower-tulip-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/flower-tulip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-tulip-thin.imageset/flower-tulip-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/flower-tulip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-thin.imageset/flower-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/flower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flower-thin.imageset/flower-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/flower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-thin.imageset/flying-saucer-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/flying-saucer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/flying-saucer-thin.imageset/flying-saucer-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/flying-saucer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-thin.imageset/folder-dashed-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-dashed-thin.imageset/folder-dashed-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-thin.imageset/folder-lock-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-lock-thin.imageset/folder-lock-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-thin.imageset/folder-minus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-minus-thin.imageset/folder-minus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-thin.imageset/folder-open-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-open-thin.imageset/folder-open-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-thin.imageset/folder-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-plus-thin.imageset/folder-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-thin.imageset/folder-simple-dashed-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-simple-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-dashed-thin.imageset/folder-simple-dashed-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-simple-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-thin.imageset/folder-simple-lock-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-simple-lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-lock-thin.imageset/folder-simple-lock-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-simple-lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-thin.imageset/folder-simple-minus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-simple-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-minus-thin.imageset/folder-simple-minus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-simple-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-thin.imageset/folder-simple-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-simple-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-plus-thin.imageset/folder-simple-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-simple-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-thin.imageset/folder-simple-star-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-simple-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-star-thin.imageset/folder-simple-star-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-simple-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-thin.imageset/folder-simple-user-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-simple-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-user-thin.imageset/folder-simple-user-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-simple-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-thin.imageset/folder-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-simple-thin.imageset/folder-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-thin.imageset/folder-star-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-star-thin.imageset/folder-star-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-thin.imageset/folder-user-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-user-thin.imageset/folder-user-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder-user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-thin.imageset/folder-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folder-thin.imageset/folder-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-thin.imageset/folders-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/folders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/folders-thin.imageset/folders-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/folders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-thin.imageset/football-helmet-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/football-helmet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-helmet-thin.imageset/football-helmet-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/football-helmet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-thin.imageset/football-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/football.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/football-thin.imageset/football-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/football.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-thin.imageset/footprints-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/footprints.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/footprints-thin.imageset/footprints-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/footprints.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-thin.imageset/fork-knife-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/fork-knife.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/fork-knife-thin.imageset/fork-knife-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/fork-knife.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-thin.imageset/four-k-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/four-k.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/four-k-thin.imageset/four-k-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/four-k.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-thin.imageset/frame-corners-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/frame-corners.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/frame-corners-thin.imageset/frame-corners-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/frame-corners.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-thin.imageset/framer-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/framer-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/framer-logo-thin.imageset/framer-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/framer-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-thin.imageset/function-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/function.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/function-thin.imageset/function-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/function.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-thin.imageset/funnel-simple-x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/funnel-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-x-thin.imageset/funnel-simple-x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/funnel-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-thin.imageset/funnel-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/funnel-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-simple-thin.imageset/funnel-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/funnel-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-thin.imageset/funnel-x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/funnel-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-x-thin.imageset/funnel-x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/funnel-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-thin.imageset/funnel-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/funnel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/funnel-thin.imageset/funnel-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/funnel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-thin.imageset/game-controller-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/game-controller.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/game-controller-thin.imageset/game-controller-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/game-controller.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-thin.imageset/garage-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/garage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/garage-thin.imageset/garage-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/garage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-thin.imageset/gas-can-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gas-can.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-can-thin.imageset/gas-can-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gas-can.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-thin.imageset/gas-pump-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gas-pump.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gas-pump-thin.imageset/gas-pump-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gas-pump.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-thin.imageset/gauge-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gauge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gauge-thin.imageset/gauge-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gauge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-thin.imageset/gavel-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gavel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gavel-thin.imageset/gavel-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gavel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-thin.imageset/gear-fine-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gear-fine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-fine-thin.imageset/gear-fine-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gear-fine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-thin.imageset/gear-six-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gear-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-six-thin.imageset/gear-six-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gear-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-thin.imageset/gear-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gear-thin.imageset/gear-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-thin.imageset/gender-female-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gender-female.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-female-thin.imageset/gender-female-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gender-female.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-thin.imageset/gender-intersex-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gender-intersex.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-intersex-thin.imageset/gender-intersex-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gender-intersex.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-thin.imageset/gender-male-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gender-male.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-male-thin.imageset/gender-male-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gender-male.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-thin.imageset/gender-neuter-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gender-neuter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-neuter-thin.imageset/gender-neuter-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gender-neuter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-thin.imageset/gender-nonbinary-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gender-nonbinary.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-nonbinary-thin.imageset/gender-nonbinary-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gender-nonbinary.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-thin.imageset/gender-transgender-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gender-transgender.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gender-transgender-thin.imageset/gender-transgender-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gender-transgender.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-thin.imageset/ghost-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/ghost.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ghost-thin.imageset/ghost-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/ghost.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-thin.imageset/gif-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gif.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gif-thin.imageset/gif-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gif.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-thin.imageset/gift-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gift.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gift-thin.imageset/gift-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gift.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-thin.imageset/git-branch-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/git-branch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-branch-thin.imageset/git-branch-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/git-branch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-thin.imageset/git-commit-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/git-commit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-commit-thin.imageset/git-commit-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/git-commit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-thin.imageset/git-diff-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/git-diff.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-diff-thin.imageset/git-diff-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/git-diff.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-thin.imageset/git-fork-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/git-fork.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-fork-thin.imageset/git-fork-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/git-fork.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-thin.imageset/git-merge-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/git-merge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-merge-thin.imageset/git-merge-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/git-merge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-thin.imageset/git-pull-request-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/git-pull-request.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/git-pull-request-thin.imageset/git-pull-request-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/git-pull-request.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-thin.imageset/github-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/github-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/github-logo-thin.imageset/github-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/github-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-thin.imageset/gitlab-logo-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gitlab-logo-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-simple-thin.imageset/gitlab-logo-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gitlab-logo-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-thin.imageset/gitlab-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gitlab-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gitlab-logo-thin.imageset/gitlab-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gitlab-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-thin.imageset/globe-hemisphere-east-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/globe-hemisphere-east.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-east-thin.imageset/globe-hemisphere-east-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/globe-hemisphere-east.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-thin.imageset/globe-hemisphere-west-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/globe-hemisphere-west.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-hemisphere-west-thin.imageset/globe-hemisphere-west-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/globe-hemisphere-west.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-thin.imageset/globe-simple-x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/globe-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-x-thin.imageset/globe-simple-x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/globe-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-thin.imageset/globe-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/globe-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-simple-thin.imageset/globe-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/globe-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-thin.imageset/globe-stand-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/globe-stand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-stand-thin.imageset/globe-stand-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/globe-stand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-thin.imageset/globe-x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/globe-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-x-thin.imageset/globe-x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/globe-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-thin.imageset/globe-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/globe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/globe-thin.imageset/globe-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/globe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-thin.imageset/goggles-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/goggles.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goggles-thin.imageset/goggles-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/goggles.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-thin.imageset/golf-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/golf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/golf-thin.imageset/golf-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/golf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-thin.imageset/goodreads-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/goodreads-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/goodreads-logo-thin.imageset/goodreads-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/goodreads-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-thin.imageset/google-cardboard-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/google-cardboard-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-cardboard-logo-thin.imageset/google-cardboard-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/google-cardboard-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-thin.imageset/google-chrome-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/google-chrome-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-chrome-logo-thin.imageset/google-chrome-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/google-chrome-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-thin.imageset/google-drive-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/google-drive-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-drive-logo-thin.imageset/google-drive-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/google-drive-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-thin.imageset/google-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/google-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-logo-thin.imageset/google-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/google-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-thin.imageset/google-photos-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/google-photos-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-photos-logo-thin.imageset/google-photos-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/google-photos-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-thin.imageset/google-play-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/google-play-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-play-logo-thin.imageset/google-play-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/google-play-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-thin.imageset/google-podcasts-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/google-podcasts-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/google-podcasts-logo-thin.imageset/google-podcasts-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/google-podcasts-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-thin.imageset/gps-fix-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gps-fix.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-fix-thin.imageset/gps-fix-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gps-fix.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-thin.imageset/gps-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gps-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-slash-thin.imageset/gps-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gps-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-thin.imageset/gps-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gps.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gps-thin.imageset/gps-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gps.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-thin.imageset/gradient-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/gradient.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/gradient-thin.imageset/gradient-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/gradient.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-thin.imageset/graduation-cap-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/graduation-cap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graduation-cap-thin.imageset/graduation-cap-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/graduation-cap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-thin.imageset/grains-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/grains-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-slash-thin.imageset/grains-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/grains-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-thin.imageset/grains-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/grains.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grains-thin.imageset/grains-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/grains.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-thin.imageset/graph-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/graph.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graph-thin.imageset/graph-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/graph.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-thin.imageset/graphics-card-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/graphics-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/graphics-card-thin.imageset/graphics-card-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/graphics-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-thin.imageset/greater-than-or-equal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/greater-than-or-equal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-or-equal-thin.imageset/greater-than-or-equal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/greater-than-or-equal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-thin.imageset/greater-than-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/greater-than.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/greater-than-thin.imageset/greater-than-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/greater-than.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-thin.imageset/grid-four-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/grid-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-four-thin.imageset/grid-four-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/grid-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-thin.imageset/grid-nine-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/grid-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/grid-nine-thin.imageset/grid-nine-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/grid-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-thin.imageset/guitar-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/guitar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/guitar-thin.imageset/guitar-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/guitar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-thin.imageset/hair-dryer-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hair-dryer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hair-dryer-thin.imageset/hair-dryer-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hair-dryer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-thin.imageset/hamburger-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hamburger.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hamburger-thin.imageset/hamburger-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hamburger.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-thin.imageset/hammer-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hammer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hammer-thin.imageset/hammer-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hammer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-thin.imageset/hand-arrow-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-down-thin.imageset/hand-arrow-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-thin.imageset/hand-arrow-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-arrow-up-thin.imageset/hand-arrow-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-thin.imageset/hand-coins-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-coins.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-coins-thin.imageset/hand-coins-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-coins.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-thin.imageset/hand-deposit-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-deposit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-deposit-thin.imageset/hand-deposit-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-deposit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-thin.imageset/hand-eye-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-eye.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-eye-thin.imageset/hand-eye-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-eye.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-thin.imageset/hand-fist-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-fist.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-fist-thin.imageset/hand-fist-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-fist.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-thin.imageset/hand-grabbing-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-grabbing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-grabbing-thin.imageset/hand-grabbing-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-grabbing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-thin.imageset/hand-heart-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-heart-thin.imageset/hand-heart-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-thin.imageset/hand-palm-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-palm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-palm-thin.imageset/hand-palm-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-palm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-thin.imageset/hand-peace-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-peace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-peace-thin.imageset/hand-peace-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-peace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-thin.imageset/hand-pointing-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-pointing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-pointing-thin.imageset/hand-pointing-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-pointing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-thin.imageset/hand-soap-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-soap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-soap-thin.imageset/hand-soap-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-soap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-thin.imageset/hand-swipe-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-swipe-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-left-thin.imageset/hand-swipe-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-swipe-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-thin.imageset/hand-swipe-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-swipe-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-swipe-right-thin.imageset/hand-swipe-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-swipe-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-thin.imageset/hand-tap-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-tap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-tap-thin.imageset/hand-tap-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-tap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-thin.imageset/hand-waving-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-waving.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-waving-thin.imageset/hand-waving-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-waving.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-thin.imageset/hand-withdraw-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-withdraw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-withdraw-thin.imageset/hand-withdraw-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand-withdraw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-thin.imageset/hand-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hand-thin.imageset/hand-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-thin.imageset/handbag-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/handbag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-simple-thin.imageset/handbag-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/handbag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-thin.imageset/handbag-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/handbag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handbag-thin.imageset/handbag-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/handbag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-thin.imageset/hands-clapping-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hands-clapping.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-clapping-thin.imageset/hands-clapping-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hands-clapping.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-thin.imageset/hands-praying-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hands-praying.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hands-praying-thin.imageset/hands-praying-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hands-praying.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-thin.imageset/handshake-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/handshake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/handshake-thin.imageset/handshake-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/handshake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-thin.imageset/hard-drive-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hard-drive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drive-thin.imageset/hard-drive-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hard-drive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-thin.imageset/hard-drives-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hard-drives.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-drives-thin.imageset/hard-drives-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hard-drives.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-thin.imageset/hard-hat-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hard-hat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hard-hat-thin.imageset/hard-hat-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hard-hat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-thin.imageset/hash-straight-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hash-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-straight-thin.imageset/hash-straight-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hash-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-thin.imageset/hash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hash-thin.imageset/hash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-thin.imageset/head-circuit-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/head-circuit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/head-circuit-thin.imageset/head-circuit-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/head-circuit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-thin.imageset/headlights-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/headlights.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headlights-thin.imageset/headlights-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/headlights.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-thin.imageset/headphones-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/headphones.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headphones-thin.imageset/headphones-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/headphones.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-thin.imageset/headset-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/headset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/headset-thin.imageset/headset-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/headset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-thin.imageset/heart-break-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/heart-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-break-thin.imageset/heart-break-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/heart-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-thin.imageset/heart-half-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/heart-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-half-thin.imageset/heart-half-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/heart-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-thin.imageset/heart-straight-break-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/heart-straight-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-break-thin.imageset/heart-straight-break-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/heart-straight-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-thin.imageset/heart-straight-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/heart-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-straight-thin.imageset/heart-straight-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/heart-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-thin.imageset/heart-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heart-thin.imageset/heart-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-thin.imageset/heartbeat-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/heartbeat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/heartbeat-thin.imageset/heartbeat-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/heartbeat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-thin.imageset/hexagon-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hexagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hexagon-thin.imageset/hexagon-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hexagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-thin.imageset/high-definition-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/high-definition.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-definition-thin.imageset/high-definition-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/high-definition.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-thin.imageset/high-heel-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/high-heel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/high-heel-thin.imageset/high-heel-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/high-heel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-thin.imageset/highlighter-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/highlighter-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-circle-thin.imageset/highlighter-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/highlighter-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-thin.imageset/highlighter-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/highlighter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/highlighter-thin.imageset/highlighter-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/highlighter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-thin.imageset/hockey-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hockey.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hockey-thin.imageset/hockey-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hockey.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-thin.imageset/hoodie-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hoodie.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hoodie-thin.imageset/hoodie-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hoodie.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-thin.imageset/horse-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/horse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/horse-thin.imageset/horse-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/horse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-thin.imageset/hospital-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hospital.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hospital-thin.imageset/hospital-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hospital.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-thin.imageset/hourglass-high-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-high-thin.imageset/hourglass-high-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-thin.imageset/hourglass-low-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-low-thin.imageset/hourglass-low-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-thin.imageset/hourglass-medium-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-medium-thin.imageset/hourglass-medium-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-thin.imageset/hourglass-simple-high-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass-simple-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-high-thin.imageset/hourglass-simple-high-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass-simple-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-thin.imageset/hourglass-simple-low-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass-simple-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-low-thin.imageset/hourglass-simple-low-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass-simple-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-thin.imageset/hourglass-simple-medium-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass-simple-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-medium-thin.imageset/hourglass-simple-medium-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass-simple-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-thin.imageset/hourglass-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-simple-thin.imageset/hourglass-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-thin.imageset/hourglass-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hourglass-thin.imageset/hourglass-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hourglass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-thin.imageset/house-line-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/house-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-line-thin.imageset/house-line-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/house-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-thin.imageset/house-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/house-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-simple-thin.imageset/house-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/house-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-thin.imageset/house-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/house.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/house-thin.imageset/house-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/house.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-thin.imageset/hurricane-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/hurricane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/hurricane-thin.imageset/hurricane-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/hurricane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-thin.imageset/ice-cream-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/ice-cream.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ice-cream-thin.imageset/ice-cream-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/ice-cream.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-thin.imageset/identification-badge-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/identification-badge.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-badge-thin.imageset/identification-badge-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/identification-badge.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-thin.imageset/identification-card-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/identification-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/identification-card-thin.imageset/identification-card-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/identification-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-thin.imageset/image-broken-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/image-broken.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-broken-thin.imageset/image-broken-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/image-broken.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-thin.imageset/image-square-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/image-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-square-thin.imageset/image-square-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/image-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-thin.imageset/image-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/image.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/image-thin.imageset/image-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/image.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-thin.imageset/images-square-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/images-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-square-thin.imageset/images-square-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/images-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-thin.imageset/images-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/images.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/images-thin.imageset/images-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/images.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-thin.imageset/infinity-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/infinity.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/infinity-thin.imageset/infinity-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/infinity.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-thin.imageset/info-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/info.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/info-thin.imageset/info-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/info.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-thin.imageset/instagram-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/instagram-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/instagram-logo-thin.imageset/instagram-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/instagram-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-thin.imageset/intersect-square-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/intersect-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-square-thin.imageset/intersect-square-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/intersect-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-thin.imageset/intersect-three-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/intersect-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-three-thin.imageset/intersect-three-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/intersect-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-thin.imageset/intersect-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/intersect.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersect-thin.imageset/intersect-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/intersect.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-thin.imageset/intersection-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/intersection.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/intersection-thin.imageset/intersection-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/intersection.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-thin.imageset/invoice-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/invoice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/invoice-thin.imageset/invoice-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/invoice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-thin.imageset/island-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/island.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/island-thin.imageset/island-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/island.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-thin.imageset/jar-label-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/jar-label.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-label-thin.imageset/jar-label-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/jar-label.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-thin.imageset/jar-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/jar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jar-thin.imageset/jar-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/jar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-thin.imageset/jeep-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/jeep.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/jeep-thin.imageset/jeep-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/jeep.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-thin.imageset/joystick-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/joystick.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/joystick-thin.imageset/joystick-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/joystick.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-thin.imageset/kanban-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/kanban.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/kanban-thin.imageset/kanban-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/kanban.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-thin.imageset/key-return-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/key-return.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-return-thin.imageset/key-return-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/key-return.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-thin.imageset/key-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/key.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/key-thin.imageset/key-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/key.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-thin.imageset/keyboard-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/keyboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyboard-thin.imageset/keyboard-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/keyboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-thin.imageset/keyhole-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/keyhole.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/keyhole-thin.imageset/keyhole-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/keyhole.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-thin.imageset/knife-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/knife.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/knife-thin.imageset/knife-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/knife.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-thin.imageset/ladder-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/ladder-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-simple-thin.imageset/ladder-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/ladder-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-thin.imageset/ladder-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/ladder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ladder-thin.imageset/ladder-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/ladder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-thin.imageset/lamp-pendant-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lamp-pendant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-pendant-thin.imageset/lamp-pendant-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lamp-pendant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-thin.imageset/lamp-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lamp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lamp-thin.imageset/lamp-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lamp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-thin.imageset/laptop-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/laptop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/laptop-thin.imageset/laptop-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/laptop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-thin.imageset/lasso-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lasso.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lasso-thin.imageset/lasso-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lasso.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-thin.imageset/lastfm-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lastfm-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lastfm-logo-thin.imageset/lastfm-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lastfm-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-thin.imageset/layout-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/layout.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/layout-thin.imageset/layout-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/layout.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-thin.imageset/leaf-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/leaf.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/leaf-thin.imageset/leaf-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/leaf.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-thin.imageset/lectern-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lectern.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lectern-thin.imageset/lectern-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lectern.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-thin.imageset/lego-smiley-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lego-smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-smiley-thin.imageset/lego-smiley-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lego-smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-thin.imageset/lego-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lego.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lego-thin.imageset/lego-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lego.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-thin.imageset/less-than-or-equal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/less-than-or-equal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-or-equal-thin.imageset/less-than-or-equal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/less-than-or-equal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-thin.imageset/less-than-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/less-than.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/less-than-thin.imageset/less-than-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/less-than.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-thin.imageset/letter-circle-h-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/letter-circle-h.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-h-thin.imageset/letter-circle-h-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/letter-circle-h.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-thin.imageset/letter-circle-p-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/letter-circle-p.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-p-thin.imageset/letter-circle-p-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/letter-circle-p.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-thin.imageset/letter-circle-v-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/letter-circle-v.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/letter-circle-v-thin.imageset/letter-circle-v-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/letter-circle-v.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-thin.imageset/lifebuoy-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lifebuoy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lifebuoy-thin.imageset/lifebuoy-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lifebuoy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-thin.imageset/lightbulb-filament-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lightbulb-filament.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-filament-thin.imageset/lightbulb-filament-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lightbulb-filament.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-thin.imageset/lightbulb-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lightbulb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightbulb-thin.imageset/lightbulb-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lightbulb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-thin.imageset/lighthouse-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lighthouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lighthouse-thin.imageset/lighthouse-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lighthouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-thin.imageset/lightning-a-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lightning-a.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-a-thin.imageset/lightning-a-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lightning-a.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-thin.imageset/lightning-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lightning-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-slash-thin.imageset/lightning-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lightning-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-thin.imageset/lightning-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lightning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lightning-thin.imageset/lightning-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lightning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-thin.imageset/line-segment-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/line-segment.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segment-thin.imageset/line-segment-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/line-segment.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-thin.imageset/line-segments-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/line-segments.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-segments-thin.imageset/line-segments-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/line-segments.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-thin.imageset/line-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/line-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/line-vertical-thin.imageset/line-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/line-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-thin.imageset/link-break-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/link-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-break-thin.imageset/link-break-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/link-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-thin.imageset/link-simple-break-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/link-simple-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-break-thin.imageset/link-simple-break-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/link-simple-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-thin.imageset/link-simple-horizontal-break-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/link-simple-horizontal-break.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-break-thin.imageset/link-simple-horizontal-break-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/link-simple-horizontal-break.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-thin.imageset/link-simple-horizontal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/link-simple-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-horizontal-thin.imageset/link-simple-horizontal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/link-simple-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-thin.imageset/link-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/link-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-simple-thin.imageset/link-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/link-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-thin.imageset/link-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/link.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/link-thin.imageset/link-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/link.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-thin.imageset/linkedin-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/linkedin-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linkedin-logo-thin.imageset/linkedin-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/linkedin-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-thin.imageset/linktree-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/linktree-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linktree-logo-thin.imageset/linktree-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/linktree-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-thin.imageset/linux-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/linux-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/linux-logo-thin.imageset/linux-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/linux-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-thin.imageset/list-bullets-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-bullets.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-bullets-thin.imageset/list-bullets-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-bullets.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-thin.imageset/list-checks-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-checks.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-checks-thin.imageset/list-checks-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-checks.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-thin.imageset/list-dashes-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-dashes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-dashes-thin.imageset/list-dashes-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-dashes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-thin.imageset/list-heart-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-heart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-heart-thin.imageset/list-heart-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-heart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-thin.imageset/list-magnifying-glass-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-magnifying-glass-thin.imageset/list-magnifying-glass-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-thin.imageset/list-numbers-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-numbers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-numbers-thin.imageset/list-numbers-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-numbers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-thin.imageset/list-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-plus-thin.imageset/list-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-thin.imageset/list-star-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-star-thin.imageset/list-star-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/list-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-thin.imageset/list-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/list-thin.imageset/list-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-thin.imageset/lock-key-open-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock-key-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-open-thin.imageset/lock-key-open-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock-key-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-thin.imageset/lock-key-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock-key.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-key-thin.imageset/lock-key-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock-key.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-thin.imageset/lock-laminated-open-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock-laminated-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-open-thin.imageset/lock-laminated-open-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock-laminated-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-thin.imageset/lock-laminated-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock-laminated.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-laminated-thin.imageset/lock-laminated-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock-laminated.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-thin.imageset/lock-open-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-open-thin.imageset/lock-open-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-thin.imageset/lock-simple-open-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock-simple-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-open-thin.imageset/lock-simple-open-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock-simple-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-thin.imageset/lock-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-simple-thin.imageset/lock-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-thin.imageset/lock-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lock-thin.imageset/lock-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-thin.imageset/lockers-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/lockers.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/lockers-thin.imageset/lockers-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/lockers.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-thin.imageset/log-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/log.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/log-thin.imageset/log-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/log.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-thin.imageset/magic-wand-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/magic-wand.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magic-wand-thin.imageset/magic-wand-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/magic-wand.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-thin.imageset/magnet-straight-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/magnet-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-straight-thin.imageset/magnet-straight-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/magnet-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-thin.imageset/magnet-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/magnet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnet-thin.imageset/magnet-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/magnet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-thin.imageset/magnifying-glass-minus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/magnifying-glass-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-minus-thin.imageset/magnifying-glass-minus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/magnifying-glass-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-thin.imageset/magnifying-glass-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/magnifying-glass-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-plus-thin.imageset/magnifying-glass-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/magnifying-glass-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-thin.imageset/magnifying-glass-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/magnifying-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/magnifying-glass-thin.imageset/magnifying-glass-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/magnifying-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-thin.imageset/mailbox-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/mailbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mailbox-thin.imageset/mailbox-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/mailbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-thin.imageset/map-pin-area-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-pin-area.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-area-thin.imageset/map-pin-area-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-pin-area.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-thin.imageset/map-pin-line-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-pin-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-line-thin.imageset/map-pin-line-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-pin-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-thin.imageset/map-pin-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-pin-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-plus-thin.imageset/map-pin-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-pin-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-thin.imageset/map-pin-simple-area-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-pin-simple-area.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-area-thin.imageset/map-pin-simple-area-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-pin-simple-area.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-thin.imageset/map-pin-simple-line-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-pin-simple-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-line-thin.imageset/map-pin-simple-line-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-pin-simple-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-thin.imageset/map-pin-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-pin-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-simple-thin.imageset/map-pin-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-pin-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-thin.imageset/map-pin-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-pin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-pin-thin.imageset/map-pin-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-pin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-thin.imageset/map-trifold-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-trifold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/map-trifold-thin.imageset/map-trifold-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/map-trifold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-thin.imageset/markdown-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/markdown-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/markdown-logo-thin.imageset/markdown-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/markdown-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-thin.imageset/marker-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/marker-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/marker-circle-thin.imageset/marker-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/marker-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-thin.imageset/martini-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/martini.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/martini-thin.imageset/martini-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/martini.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-thin.imageset/mask-happy-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/mask-happy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-happy-thin.imageset/mask-happy-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/mask-happy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-thin.imageset/mask-sad-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/mask-sad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mask-sad-thin.imageset/mask-sad-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/mask-sad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-thin.imageset/mastodon-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/mastodon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mastodon-logo-thin.imageset/mastodon-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/mastodon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-thin.imageset/math-operations-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/math-operations.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/math-operations-thin.imageset/math-operations-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/math-operations.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-thin.imageset/matrix-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/matrix-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/matrix-logo-thin.imageset/matrix-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/matrix-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-thin.imageset/medal-military-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/medal-military.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-military-thin.imageset/medal-military-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/medal-military.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-thin.imageset/medal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/medal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medal-thin.imageset/medal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/medal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-thin.imageset/medium-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/medium-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/medium-logo-thin.imageset/medium-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/medium-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-thin.imageset/megaphone-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/megaphone-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-simple-thin.imageset/megaphone-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/megaphone-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-thin.imageset/megaphone-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/megaphone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/megaphone-thin.imageset/megaphone-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/megaphone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-thin.imageset/member-of-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/member-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/member-of-thin.imageset/member-of-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/member-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-thin.imageset/memory-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/memory.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/memory-thin.imageset/memory-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/memory.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-thin.imageset/messenger-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/messenger-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/messenger-logo-thin.imageset/messenger-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/messenger-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-thin.imageset/meta-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/meta-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meta-logo-thin.imageset/meta-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/meta-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-thin.imageset/meteor-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/meteor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/meteor-thin.imageset/meteor-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/meteor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-thin.imageset/metronome-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/metronome.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/metronome-thin.imageset/metronome-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/metronome.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-thin.imageset/microphone-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/microphone-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-slash-thin.imageset/microphone-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/microphone-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-thin.imageset/microphone-stage-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/microphone-stage.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-stage-thin.imageset/microphone-stage-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/microphone-stage.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-thin.imageset/microphone-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/microphone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microphone-thin.imageset/microphone-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/microphone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-thin.imageset/microscope-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/microscope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microscope-thin.imageset/microscope-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/microscope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-thin.imageset/microsoft-excel-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/microsoft-excel-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-excel-logo-thin.imageset/microsoft-excel-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/microsoft-excel-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-thin.imageset/microsoft-outlook-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/microsoft-outlook-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-outlook-logo-thin.imageset/microsoft-outlook-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/microsoft-outlook-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-thin.imageset/microsoft-powerpoint-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/microsoft-powerpoint-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-powerpoint-logo-thin.imageset/microsoft-powerpoint-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/microsoft-powerpoint-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-thin.imageset/microsoft-teams-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/microsoft-teams-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-teams-logo-thin.imageset/microsoft-teams-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/microsoft-teams-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-thin.imageset/microsoft-word-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/microsoft-word-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/microsoft-word-logo-thin.imageset/microsoft-word-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/microsoft-word-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-thin.imageset/minus-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/minus-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-circle-thin.imageset/minus-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/minus-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-thin.imageset/minus-square-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/minus-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-square-thin.imageset/minus-square-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/minus-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-thin.imageset/minus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/minus-thin.imageset/minus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-thin.imageset/money-wavy-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/money-wavy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-wavy-thin.imageset/money-wavy-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/money-wavy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-thin.imageset/money-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/money.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/money-thin.imageset/money-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/money.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-thin.imageset/monitor-arrow-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/monitor-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-arrow-up-thin.imageset/monitor-arrow-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/monitor-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-thin.imageset/monitor-play-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/monitor-play.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-play-thin.imageset/monitor-play-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/monitor-play.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-thin.imageset/monitor-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/monitor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/monitor-thin.imageset/monitor-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/monitor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-thin.imageset/moon-stars-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/moon-stars.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-stars-thin.imageset/moon-stars-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/moon-stars.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-thin.imageset/moon-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/moon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moon-thin.imageset/moon-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/moon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-thin.imageset/moped-front-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/moped-front.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-front-thin.imageset/moped-front-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/moped-front.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-thin.imageset/moped-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/moped.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/moped-thin.imageset/moped-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/moped.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-thin.imageset/mosque-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/mosque.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mosque-thin.imageset/mosque-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/mosque.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-thin.imageset/motorcycle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/motorcycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/motorcycle-thin.imageset/motorcycle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/motorcycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-thin.imageset/mountains-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/mountains.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mountains-thin.imageset/mountains-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/mountains.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-thin.imageset/mouse-left-click-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/mouse-left-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-left-click-thin.imageset/mouse-left-click-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/mouse-left-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-thin.imageset/mouse-middle-click-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/mouse-middle-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-middle-click-thin.imageset/mouse-middle-click-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/mouse-middle-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-thin.imageset/mouse-right-click-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/mouse-right-click.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-right-click-thin.imageset/mouse-right-click-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/mouse-right-click.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-thin.imageset/mouse-scroll-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/mouse-scroll.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-scroll-thin.imageset/mouse-scroll-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/mouse-scroll.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-thin.imageset/mouse-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/mouse-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-simple-thin.imageset/mouse-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/mouse-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-thin.imageset/mouse-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/mouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/mouse-thin.imageset/mouse-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/mouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-thin.imageset/music-note-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/music-note-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-simple-thin.imageset/music-note-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/music-note-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-thin.imageset/music-note-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/music-note.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-note-thin.imageset/music-note-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/music-note.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-thin.imageset/music-notes-minus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/music-notes-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-minus-thin.imageset/music-notes-minus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/music-notes-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-thin.imageset/music-notes-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/music-notes-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-plus-thin.imageset/music-notes-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/music-notes-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-thin.imageset/music-notes-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/music-notes-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-simple-thin.imageset/music-notes-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/music-notes-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-thin.imageset/music-notes-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/music-notes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/music-notes-thin.imageset/music-notes-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/music-notes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-thin.imageset/navigation-arrow-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/navigation-arrow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/navigation-arrow-thin.imageset/navigation-arrow-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/navigation-arrow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-thin.imageset/needle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/needle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/needle-thin.imageset/needle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/needle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-thin.imageset/network-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/network-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-slash-thin.imageset/network-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/network-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-thin.imageset/network-x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/network-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-x-thin.imageset/network-x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/network-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-thin.imageset/network-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/network.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/network-thin.imageset/network-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/network.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-thin.imageset/newspaper-clipping-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/newspaper-clipping.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-clipping-thin.imageset/newspaper-clipping-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/newspaper-clipping.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-thin.imageset/newspaper-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/newspaper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/newspaper-thin.imageset/newspaper-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/newspaper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-thin.imageset/not-equals-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/not-equals.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-equals-thin.imageset/not-equals-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/not-equals.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-thin.imageset/not-member-of-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/not-member-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-member-of-thin.imageset/not-member-of-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/not-member-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-thin.imageset/not-subset-of-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/not-subset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-subset-of-thin.imageset/not-subset-of-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/not-subset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-thin.imageset/not-superset-of-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/not-superset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/not-superset-of-thin.imageset/not-superset-of-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/not-superset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-thin.imageset/notches-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/notches.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notches-thin.imageset/notches-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/notches.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-thin.imageset/note-blank-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/note-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-blank-thin.imageset/note-blank-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/note-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-thin.imageset/note-pencil-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/note-pencil.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-pencil-thin.imageset/note-pencil-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/note-pencil.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-thin.imageset/note-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/note.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/note-thin.imageset/note-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/note.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-thin.imageset/notebook-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/notebook.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notebook-thin.imageset/notebook-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/notebook.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-thin.imageset/notepad-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/notepad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notepad-thin.imageset/notepad-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/notepad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-thin.imageset/notification-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/notification.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notification-thin.imageset/notification-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/notification.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-thin.imageset/notion-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/notion-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/notion-logo-thin.imageset/notion-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/notion-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-thin.imageset/nuclear-plant-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/nuclear-plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nuclear-plant-thin.imageset/nuclear-plant-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/nuclear-plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-thin.imageset/number-circle-eight-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-eight-thin.imageset/number-circle-eight-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-thin.imageset/number-circle-five-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-five-thin.imageset/number-circle-five-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-thin.imageset/number-circle-four-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-four-thin.imageset/number-circle-four-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-thin.imageset/number-circle-nine-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-nine-thin.imageset/number-circle-nine-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-thin.imageset/number-circle-one-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-one-thin.imageset/number-circle-one-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-thin.imageset/number-circle-seven-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-seven-thin.imageset/number-circle-seven-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-thin.imageset/number-circle-six-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-six-thin.imageset/number-circle-six-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-thin.imageset/number-circle-three-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-three-thin.imageset/number-circle-three-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-thin.imageset/number-circle-two-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-two-thin.imageset/number-circle-two-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-thin.imageset/number-circle-zero-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-circle-zero-thin.imageset/number-circle-zero-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-circle-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-thin.imageset/number-eight-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-eight-thin.imageset/number-eight-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-thin.imageset/number-five-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-five-thin.imageset/number-five-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-thin.imageset/number-four-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-four-thin.imageset/number-four-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-thin.imageset/number-nine-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-nine-thin.imageset/number-nine-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-thin.imageset/number-one-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-one-thin.imageset/number-one-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-thin.imageset/number-seven-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-seven-thin.imageset/number-seven-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-thin.imageset/number-six-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-six-thin.imageset/number-six-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-thin.imageset/number-square-eight-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-eight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-eight-thin.imageset/number-square-eight-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-eight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-thin.imageset/number-square-five-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-five-thin.imageset/number-square-five-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-thin.imageset/number-square-four-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-four-thin.imageset/number-square-four-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-thin.imageset/number-square-nine-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-nine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-nine-thin.imageset/number-square-nine-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-nine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-thin.imageset/number-square-one-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-one-thin.imageset/number-square-one-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-thin.imageset/number-square-seven-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-seven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-seven-thin.imageset/number-square-seven-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-seven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-thin.imageset/number-square-six-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-six-thin.imageset/number-square-six-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-thin.imageset/number-square-three-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-three-thin.imageset/number-square-three-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-thin.imageset/number-square-two-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-two-thin.imageset/number-square-two-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-thin.imageset/number-square-zero-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-square-zero-thin.imageset/number-square-zero-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-square-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-thin.imageset/number-three-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-three-thin.imageset/number-three-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-thin.imageset/number-two-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-two-thin.imageset/number-two-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-thin.imageset/number-zero-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-zero.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/number-zero-thin.imageset/number-zero-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/number-zero.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-thin.imageset/numpad-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/numpad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/numpad-thin.imageset/numpad-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/numpad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-thin.imageset/nut-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/nut.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/nut-thin.imageset/nut-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/nut.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-thin.imageset/ny-times-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/ny-times-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ny-times-logo-thin.imageset/ny-times-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/ny-times-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-thin.imageset/octagon-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/octagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/octagon-thin.imageset/octagon-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/octagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-thin.imageset/office-chair-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/office-chair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/office-chair-thin.imageset/office-chair-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/office-chair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-thin.imageset/onigiri-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/onigiri.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/onigiri-thin.imageset/onigiri-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/onigiri.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-thin.imageset/open-ai-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/open-ai-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/open-ai-logo-thin.imageset/open-ai-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/open-ai-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-thin.imageset/option-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/option.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/option-thin.imageset/option-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/option.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-thin.imageset/orange-slice-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/orange-slice.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-slice-thin.imageset/orange-slice-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/orange-slice.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-thin.imageset/orange-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/orange.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/orange-thin.imageset/orange-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/orange.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-thin.imageset/oven-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/oven.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/oven-thin.imageset/oven-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/oven.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-thin.imageset/package-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/package.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/package-thin.imageset/package-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/package.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-thin.imageset/paint-brush-broad-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/paint-brush-broad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-broad-thin.imageset/paint-brush-broad-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/paint-brush-broad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-thin.imageset/paint-brush-household-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/paint-brush-household.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-household-thin.imageset/paint-brush-household-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/paint-brush-household.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-thin.imageset/paint-brush-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/paint-brush.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-brush-thin.imageset/paint-brush-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/paint-brush.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-thin.imageset/paint-bucket-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/paint-bucket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-bucket-thin.imageset/paint-bucket-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/paint-bucket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-thin.imageset/paint-roller-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/paint-roller.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paint-roller-thin.imageset/paint-roller-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/paint-roller.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-thin.imageset/palette-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/palette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/palette-thin.imageset/palette-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/palette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-thin.imageset/panorama-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/panorama.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/panorama-thin.imageset/panorama-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/panorama.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-thin.imageset/pants-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pants.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pants-thin.imageset/pants-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pants.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-thin.imageset/paper-plane-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/paper-plane-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-right-thin.imageset/paper-plane-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/paper-plane-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-thin.imageset/paper-plane-tilt-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/paper-plane-tilt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-tilt-thin.imageset/paper-plane-tilt-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/paper-plane-tilt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-thin.imageset/paper-plane-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/paper-plane.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paper-plane-thin.imageset/paper-plane-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/paper-plane.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-thin.imageset/paperclip-horizontal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/paperclip-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-horizontal-thin.imageset/paperclip-horizontal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/paperclip-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-thin.imageset/paperclip-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/paperclip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paperclip-thin.imageset/paperclip-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/paperclip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-thin.imageset/parachute-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/parachute.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parachute-thin.imageset/parachute-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/parachute.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-thin.imageset/paragraph-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/paragraph.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paragraph-thin.imageset/paragraph-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/paragraph.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-thin.imageset/parallelogram-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/parallelogram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/parallelogram-thin.imageset/parallelogram-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/parallelogram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-thin.imageset/park-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/park.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/park-thin.imageset/park-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/park.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-thin.imageset/password-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/password.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/password-thin.imageset/password-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/password.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-thin.imageset/path-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/path.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/path-thin.imageset/path-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/path.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-thin.imageset/patreon-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/patreon-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/patreon-logo-thin.imageset/patreon-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/patreon-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-thin.imageset/pause-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pause-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-circle-thin.imageset/pause-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pause-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-thin.imageset/pause-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pause-thin.imageset/pause-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-thin.imageset/paw-print-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/paw-print.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paw-print-thin.imageset/paw-print-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/paw-print.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-thin.imageset/paypal-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/paypal-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/paypal-logo-thin.imageset/paypal-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/paypal-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-thin.imageset/peace-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/peace.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/peace-thin.imageset/peace-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/peace.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-thin.imageset/pen-nib-straight-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pen-nib-straight.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-straight-thin.imageset/pen-nib-straight-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pen-nib-straight.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-thin.imageset/pen-nib-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pen-nib.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-nib-thin.imageset/pen-nib-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pen-nib.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-thin.imageset/pen-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pen-thin.imageset/pen-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-thin.imageset/pencil-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-circle-thin.imageset/pencil-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-thin.imageset/pencil-line-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-line-thin.imageset/pencil-line-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-thin.imageset/pencil-ruler-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil-ruler.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-ruler-thin.imageset/pencil-ruler-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil-ruler.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-thin.imageset/pencil-simple-line-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil-simple-line.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-line-thin.imageset/pencil-simple-line-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil-simple-line.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-thin.imageset/pencil-simple-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-slash-thin.imageset/pencil-simple-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-thin.imageset/pencil-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-simple-thin.imageset/pencil-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-thin.imageset/pencil-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-slash-thin.imageset/pencil-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-thin.imageset/pencil-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pencil-thin.imageset/pencil-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pencil.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-thin.imageset/pentagon-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pentagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagon-thin.imageset/pentagon-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pentagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-thin.imageset/pentagram-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pentagram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pentagram-thin.imageset/pentagram-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pentagram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-thin.imageset/pepper-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pepper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pepper-thin.imageset/pepper-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pepper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-thin.imageset/percent-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/percent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/percent-thin.imageset/percent-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/percent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-thin.imageset/person-arms-spread-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-arms-spread.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-arms-spread-thin.imageset/person-arms-spread-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-arms-spread.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-thin.imageset/person-simple-bike-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-bike.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-bike-thin.imageset/person-simple-bike-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-bike.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-thin.imageset/person-simple-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-circle-thin.imageset/person-simple-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-thin.imageset/person-simple-hike-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-hike.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-hike-thin.imageset/person-simple-hike-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-hike.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-thin.imageset/person-simple-run-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-run.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-run-thin.imageset/person-simple-run-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-run.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-thin.imageset/person-simple-ski-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-ski.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-ski-thin.imageset/person-simple-ski-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-ski.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-thin.imageset/person-simple-snowboard-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-snowboard.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-snowboard-thin.imageset/person-simple-snowboard-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-snowboard.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-thin.imageset/person-simple-swim-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-swim.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-swim-thin.imageset/person-simple-swim-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-swim.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-thin.imageset/person-simple-tai-chi-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-tai-chi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-tai-chi-thin.imageset/person-simple-tai-chi-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-tai-chi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-thin.imageset/person-simple-throw-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-throw.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-throw-thin.imageset/person-simple-throw-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-throw.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-thin.imageset/person-simple-walk-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-walk.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-walk-thin.imageset/person-simple-walk-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple-walk.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-thin.imageset/person-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-simple-thin.imageset/person-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/person-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-thin.imageset/person-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/person.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/person-thin.imageset/person-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/person.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-thin.imageset/perspective-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/perspective.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/perspective-thin.imageset/perspective-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/perspective.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-thin.imageset/phone-call-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-call.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-call-thin.imageset/phone-call-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-call.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-thin.imageset/phone-disconnect-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-disconnect.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-disconnect-thin.imageset/phone-disconnect-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-disconnect.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-thin.imageset/phone-incoming-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-incoming.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-incoming-thin.imageset/phone-incoming-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-incoming.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-thin.imageset/phone-list-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-list-thin.imageset/phone-list-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-thin.imageset/phone-outgoing-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-outgoing.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-outgoing-thin.imageset/phone-outgoing-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-outgoing.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-thin.imageset/phone-pause-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-pause-thin.imageset/phone-pause-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-thin.imageset/phone-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-plus-thin.imageset/phone-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-thin.imageset/phone-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-slash-thin.imageset/phone-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-thin.imageset/phone-transfer-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-transfer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-transfer-thin.imageset/phone-transfer-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-transfer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-thin.imageset/phone-x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-x-thin.imageset/phone-x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-thin.imageset/phone-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phone-thin.imageset/phone-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/phone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-thin.imageset/phosphor-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/phosphor-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/phosphor-logo-thin.imageset/phosphor-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/phosphor-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-thin.imageset/pi-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pi-thin.imageset/pi-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-thin.imageset/piano-keys-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/piano-keys.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piano-keys-thin.imageset/piano-keys-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/piano-keys.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-thin.imageset/picnic-table-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/picnic-table.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picnic-table-thin.imageset/picnic-table-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/picnic-table.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-thin.imageset/picture-in-picture-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/picture-in-picture.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/picture-in-picture-thin.imageset/picture-in-picture-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/picture-in-picture.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-thin.imageset/piggy-bank-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/piggy-bank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/piggy-bank-thin.imageset/piggy-bank-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/piggy-bank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-thin.imageset/pill-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pill.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pill-thin.imageset/pill-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pill.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-thin.imageset/ping-pong-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/ping-pong.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ping-pong-thin.imageset/ping-pong-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/ping-pong.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-thin.imageset/pint-glass-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pint-glass.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pint-glass-thin.imageset/pint-glass-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pint-glass.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-thin.imageset/pinterest-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pinterest-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinterest-logo-thin.imageset/pinterest-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pinterest-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-thin.imageset/pinwheel-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pinwheel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pinwheel-thin.imageset/pinwheel-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pinwheel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-thin.imageset/pipe-wrench-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pipe-wrench.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-wrench-thin.imageset/pipe-wrench-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pipe-wrench.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-thin.imageset/pipe-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pipe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pipe-thin.imageset/pipe-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pipe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-thin.imageset/pix-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pix-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pix-logo-thin.imageset/pix-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pix-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-thin.imageset/pizza-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pizza.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pizza-thin.imageset/pizza-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pizza.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-thin.imageset/placeholder-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/placeholder.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/placeholder-thin.imageset/placeholder-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/placeholder.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-thin.imageset/planet-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/planet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/planet-thin.imageset/planet-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/planet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-thin.imageset/plant-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plant-thin.imageset/plant-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-thin.imageset/play-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/play-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-circle-thin.imageset/play-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/play-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-thin.imageset/play-pause-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/play-pause.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-pause-thin.imageset/play-pause-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/play-pause.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-thin.imageset/play-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/play.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/play-thin.imageset/play-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/play.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-thin.imageset/playlist-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/playlist.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/playlist-thin.imageset/playlist-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/playlist.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-thin.imageset/plug-charging-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/plug-charging.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-charging-thin.imageset/plug-charging-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/plug-charging.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-thin.imageset/plug-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/plug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plug-thin.imageset/plug-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/plug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-thin.imageset/plugs-connected-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/plugs-connected.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-connected-thin.imageset/plugs-connected-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/plugs-connected.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-thin.imageset/plugs-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/plugs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plugs-thin.imageset/plugs-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/plugs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-thin.imageset/plus-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/plus-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-circle-thin.imageset/plus-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/plus-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-thin.imageset/plus-minus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/plus-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-minus-thin.imageset/plus-minus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/plus-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-thin.imageset/plus-square-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/plus-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-square-thin.imageset/plus-square-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/plus-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-thin.imageset/plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/plus-thin.imageset/plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-thin.imageset/poker-chip-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/poker-chip.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/poker-chip-thin.imageset/poker-chip-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/poker-chip.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-thin.imageset/police-car-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/police-car.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/police-car-thin.imageset/police-car-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/police-car.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-thin.imageset/polygon-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/polygon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/polygon-thin.imageset/polygon-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/polygon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-thin.imageset/popcorn-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/popcorn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popcorn-thin.imageset/popcorn-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/popcorn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-thin.imageset/popsicle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/popsicle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/popsicle-thin.imageset/popsicle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/popsicle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-thin.imageset/potted-plant-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/potted-plant.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/potted-plant-thin.imageset/potted-plant-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/potted-plant.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-thin.imageset/power-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/power.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/power-thin.imageset/power-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/power.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-thin.imageset/prescription-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/prescription.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prescription-thin.imageset/prescription-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/prescription.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-thin.imageset/presentation-chart-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/presentation-chart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-chart-thin.imageset/presentation-chart-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/presentation-chart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-thin.imageset/presentation-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/presentation.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/presentation-thin.imageset/presentation-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/presentation.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-thin.imageset/printer-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/printer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/printer-thin.imageset/printer-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/printer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-thin.imageset/prohibit-inset-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/prohibit-inset.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-inset-thin.imageset/prohibit-inset-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/prohibit-inset.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-thin.imageset/prohibit-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/prohibit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/prohibit-thin.imageset/prohibit-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/prohibit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-thin.imageset/projector-screen-chart-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/projector-screen-chart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-chart-thin.imageset/projector-screen-chart-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/projector-screen-chart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-thin.imageset/projector-screen-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/projector-screen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/projector-screen-thin.imageset/projector-screen-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/projector-screen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-thin.imageset/pulse-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/pulse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/pulse-thin.imageset/pulse-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/pulse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-thin.imageset/push-pin-simple-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/push-pin-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-slash-thin.imageset/push-pin-simple-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/push-pin-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-thin.imageset/push-pin-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/push-pin-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-simple-thin.imageset/push-pin-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/push-pin-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-thin.imageset/push-pin-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/push-pin-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-slash-thin.imageset/push-pin-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/push-pin-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-thin.imageset/push-pin-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/push-pin.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/push-pin-thin.imageset/push-pin-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/push-pin.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-thin.imageset/puzzle-piece-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/puzzle-piece.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/puzzle-piece-thin.imageset/puzzle-piece-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/puzzle-piece.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-thin.imageset/qr-code-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/qr-code.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/qr-code-thin.imageset/qr-code-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/qr-code.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-thin.imageset/question-mark-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/question-mark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-mark-thin.imageset/question-mark-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/question-mark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-thin.imageset/question-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/question.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/question-thin.imageset/question-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/question.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-thin.imageset/queue-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/queue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/queue-thin.imageset/queue-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/queue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-thin.imageset/quotes-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/quotes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/quotes-thin.imageset/quotes-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/quotes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-thin.imageset/rabbit-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/rabbit.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rabbit-thin.imageset/rabbit-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/rabbit.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-thin.imageset/racquet-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/racquet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/racquet-thin.imageset/racquet-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/racquet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-thin.imageset/radical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/radical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radical-thin.imageset/radical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/radical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-thin.imageset/radio-button-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/radio-button.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-button-thin.imageset/radio-button-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/radio-button.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-thin.imageset/radio-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/radio.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radio-thin.imageset/radio-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/radio.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-thin.imageset/radioactive-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/radioactive.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/radioactive-thin.imageset/radioactive-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/radioactive.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-thin.imageset/rainbow-cloud-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/rainbow-cloud.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-cloud-thin.imageset/rainbow-cloud-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/rainbow-cloud.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-thin.imageset/rainbow-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/rainbow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rainbow-thin.imageset/rainbow-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/rainbow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-thin.imageset/ranking-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/ranking.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ranking-thin.imageset/ranking-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/ranking.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-thin.imageset/read-cv-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/read-cv-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/read-cv-logo-thin.imageset/read-cv-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/read-cv-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-thin.imageset/receipt-x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/receipt-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-x-thin.imageset/receipt-x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/receipt-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-thin.imageset/receipt-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/receipt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/receipt-thin.imageset/receipt-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/receipt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-thin.imageset/record-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/record.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/record-thin.imageset/record-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/record.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-thin.imageset/rectangle-dashed-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/rectangle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-dashed-thin.imageset/rectangle-dashed-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/rectangle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-thin.imageset/rectangle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/rectangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rectangle-thin.imageset/rectangle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/rectangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-thin.imageset/recycle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/recycle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/recycle-thin.imageset/recycle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/recycle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-thin.imageset/reddit-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/reddit-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/reddit-logo-thin.imageset/reddit-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/reddit-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-thin.imageset/repeat-once-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/repeat-once.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-once-thin.imageset/repeat-once-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/repeat-once.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-thin.imageset/repeat-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/repeat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/repeat-thin.imageset/repeat-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/repeat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-thin.imageset/replit-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/replit-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/replit-logo-thin.imageset/replit-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/replit-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-thin.imageset/resize-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/resize.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/resize-thin.imageset/resize-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/resize.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-thin.imageset/rewind-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/rewind-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-circle-thin.imageset/rewind-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/rewind-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-thin.imageset/rewind-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/rewind.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rewind-thin.imageset/rewind-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/rewind.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-thin.imageset/road-horizon-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/road-horizon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/road-horizon-thin.imageset/road-horizon-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/road-horizon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-thin.imageset/robot-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/robot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/robot-thin.imageset/robot-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/robot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-thin.imageset/rocket-launch-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/rocket-launch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-launch-thin.imageset/rocket-launch-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/rocket-launch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-thin.imageset/rocket-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/rocket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rocket-thin.imageset/rocket-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/rocket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-thin.imageset/rows-plus-bottom-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/rows-plus-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-bottom-thin.imageset/rows-plus-bottom-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/rows-plus-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-thin.imageset/rows-plus-top-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/rows-plus-top.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-plus-top-thin.imageset/rows-plus-top-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/rows-plus-top.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-thin.imageset/rows-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/rows.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rows-thin.imageset/rows-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/rows.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-thin.imageset/rss-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/rss-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-simple-thin.imageset/rss-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/rss-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-thin.imageset/rss-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/rss.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rss-thin.imageset/rss-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/rss.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-thin.imageset/rug-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/rug.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/rug-thin.imageset/rug-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/rug.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-thin.imageset/ruler-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/ruler.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ruler-thin.imageset/ruler-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/ruler.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-thin.imageset/sailboat-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sailboat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sailboat-thin.imageset/sailboat-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sailboat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-thin.imageset/scales-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/scales.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scales-thin.imageset/scales-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/scales.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-thin.imageset/scan-smiley-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/scan-smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-smiley-thin.imageset/scan-smiley-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/scan-smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-thin.imageset/scan-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/scan.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scan-thin.imageset/scan-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/scan.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-thin.imageset/scissors-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/scissors.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scissors-thin.imageset/scissors-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/scissors.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-thin.imageset/scooter-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/scooter.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scooter-thin.imageset/scooter-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/scooter.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-thin.imageset/screencast-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/screencast.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screencast-thin.imageset/screencast-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/screencast.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-thin.imageset/screwdriver-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/screwdriver.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/screwdriver-thin.imageset/screwdriver-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/screwdriver.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-thin.imageset/scribble-loop-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/scribble-loop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-loop-thin.imageset/scribble-loop-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/scribble-loop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-thin.imageset/scribble-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/scribble.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scribble-thin.imageset/scribble-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/scribble.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-thin.imageset/scroll-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/scroll.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/scroll-thin.imageset/scroll-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/scroll.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-thin.imageset/seal-check-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/seal-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-check-thin.imageset/seal-check-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/seal-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-thin.imageset/seal-percent-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/seal-percent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-percent-thin.imageset/seal-percent-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/seal-percent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-thin.imageset/seal-question-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/seal-question.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-question-thin.imageset/seal-question-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/seal-question.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-thin.imageset/seal-warning-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/seal-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-warning-thin.imageset/seal-warning-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/seal-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-thin.imageset/seal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/seal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seal-thin.imageset/seal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/seal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-thin.imageset/seat-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/seat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seat-thin.imageset/seat-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/seat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-thin.imageset/seatbelt-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/seatbelt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/seatbelt-thin.imageset/seatbelt-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/seatbelt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-thin.imageset/security-camera-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/security-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/security-camera-thin.imageset/security-camera-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/security-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-thin.imageset/selection-all-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/selection-all.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-all-thin.imageset/selection-all-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/selection-all.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-thin.imageset/selection-background-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/selection-background.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-background-thin.imageset/selection-background-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/selection-background.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-thin.imageset/selection-foreground-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/selection-foreground.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-foreground-thin.imageset/selection-foreground-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/selection-foreground.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-thin.imageset/selection-inverse-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/selection-inverse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-inverse-thin.imageset/selection-inverse-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/selection-inverse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-thin.imageset/selection-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/selection-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-plus-thin.imageset/selection-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/selection-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-thin.imageset/selection-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/selection-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-slash-thin.imageset/selection-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/selection-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-thin.imageset/selection-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/selection.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/selection-thin.imageset/selection-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/selection.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-thin.imageset/shapes-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shapes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shapes-thin.imageset/shapes-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shapes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-thin.imageset/share-fat-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/share-fat.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-fat-thin.imageset/share-fat-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/share-fat.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-thin.imageset/share-network-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/share-network.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-network-thin.imageset/share-network-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/share-network.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-thin.imageset/share-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/share.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/share-thin.imageset/share-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/share.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-thin.imageset/shield-check-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-check-thin.imageset/shield-check-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-thin.imageset/shield-checkered-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield-checkered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-checkered-thin.imageset/shield-checkered-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield-checkered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-thin.imageset/shield-chevron-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield-chevron.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-chevron-thin.imageset/shield-chevron-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield-chevron.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-thin.imageset/shield-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-plus-thin.imageset/shield-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-thin.imageset/shield-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-slash-thin.imageset/shield-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-thin.imageset/shield-star-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-star-thin.imageset/shield-star-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-thin.imageset/shield-warning-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield-warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-warning-thin.imageset/shield-warning-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield-warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-thin.imageset/shield-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shield-thin.imageset/shield-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shield.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-thin.imageset/shipping-container-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shipping-container.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shipping-container-thin.imageset/shipping-container-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shipping-container.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-thin.imageset/shirt-folded-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shirt-folded.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shirt-folded-thin.imageset/shirt-folded-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shirt-folded.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-thin.imageset/shooting-star-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shooting-star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shooting-star-thin.imageset/shooting-star-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shooting-star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-thin.imageset/shopping-bag-open-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shopping-bag-open.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-open-thin.imageset/shopping-bag-open-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shopping-bag-open.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-thin.imageset/shopping-bag-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shopping-bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-bag-thin.imageset/shopping-bag-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shopping-bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-thin.imageset/shopping-cart-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shopping-cart-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-simple-thin.imageset/shopping-cart-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shopping-cart-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-thin.imageset/shopping-cart-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shopping-cart.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shopping-cart-thin.imageset/shopping-cart-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shopping-cart.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-thin.imageset/shovel-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shovel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shovel-thin.imageset/shovel-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shovel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-thin.imageset/shower-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shower.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shower-thin.imageset/shower-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shower.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-thin.imageset/shrimp-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shrimp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shrimp-thin.imageset/shrimp-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shrimp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-thin.imageset/shuffle-angular-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shuffle-angular.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-angular-thin.imageset/shuffle-angular-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shuffle-angular.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-thin.imageset/shuffle-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shuffle-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-simple-thin.imageset/shuffle-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shuffle-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-thin.imageset/shuffle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/shuffle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/shuffle-thin.imageset/shuffle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/shuffle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-thin.imageset/sidebar-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sidebar-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-simple-thin.imageset/sidebar-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sidebar-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-thin.imageset/sidebar-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sidebar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sidebar-thin.imageset/sidebar-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sidebar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-thin.imageset/sigma-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sigma.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sigma-thin.imageset/sigma-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sigma.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-thin.imageset/sign-in-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sign-in.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-in-thin.imageset/sign-in-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sign-in.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-thin.imageset/sign-out-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sign-out.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sign-out-thin.imageset/sign-out-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sign-out.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-thin.imageset/signature-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/signature.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signature-thin.imageset/signature-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/signature.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-thin.imageset/signpost-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/signpost.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/signpost-thin.imageset/signpost-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/signpost.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-thin.imageset/sim-card-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sim-card.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sim-card-thin.imageset/sim-card-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sim-card.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-thin.imageset/siren-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/siren.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/siren-thin.imageset/siren-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/siren.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-thin.imageset/sketch-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sketch-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sketch-logo-thin.imageset/sketch-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sketch-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-thin.imageset/skip-back-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/skip-back-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-circle-thin.imageset/skip-back-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/skip-back-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-thin.imageset/skip-back-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/skip-back.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-back-thin.imageset/skip-back-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/skip-back.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-thin.imageset/skip-forward-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/skip-forward-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-circle-thin.imageset/skip-forward-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/skip-forward-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-thin.imageset/skip-forward-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/skip-forward.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skip-forward-thin.imageset/skip-forward-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/skip-forward.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-thin.imageset/skull-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/skull.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skull-thin.imageset/skull-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/skull.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-thin.imageset/skype-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/skype-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/skype-logo-thin.imageset/skype-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/skype-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-thin.imageset/slack-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/slack-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slack-logo-thin.imageset/slack-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/slack-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-thin.imageset/sliders-horizontal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sliders-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-horizontal-thin.imageset/sliders-horizontal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sliders-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-thin.imageset/sliders-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sliders.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sliders-thin.imageset/sliders-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sliders.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-thin.imageset/slideshow-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/slideshow.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/slideshow-thin.imageset/slideshow-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/slideshow.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-thin.imageset/smiley-angry-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-angry.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-angry-thin.imageset/smiley-angry-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-angry.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-thin.imageset/smiley-blank-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-blank.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-blank-thin.imageset/smiley-blank-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-blank.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-thin.imageset/smiley-meh-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-meh.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-meh-thin.imageset/smiley-meh-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-meh.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-thin.imageset/smiley-melting-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-melting.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-melting-thin.imageset/smiley-melting-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-melting.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-thin.imageset/smiley-nervous-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-nervous.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-nervous-thin.imageset/smiley-nervous-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-nervous.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-thin.imageset/smiley-sad-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-sad.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sad-thin.imageset/smiley-sad-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-sad.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-thin.imageset/smiley-sticker-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-sticker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-sticker-thin.imageset/smiley-sticker-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-sticker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-thin.imageset/smiley-wink-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-wink.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-wink-thin.imageset/smiley-wink-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-wink.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-thin.imageset/smiley-x-eyes-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-x-eyes.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-x-eyes-thin.imageset/smiley-x-eyes-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley-x-eyes.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-thin.imageset/smiley-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/smiley-thin.imageset/smiley-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/smiley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-thin.imageset/snapchat-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/snapchat-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snapchat-logo-thin.imageset/snapchat-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/snapchat-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-thin.imageset/sneaker-move-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sneaker-move.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-move-thin.imageset/sneaker-move-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sneaker-move.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-thin.imageset/sneaker-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sneaker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sneaker-thin.imageset/sneaker-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sneaker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-thin.imageset/snowflake-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/snowflake.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/snowflake-thin.imageset/snowflake-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/snowflake.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-thin.imageset/soccer-ball-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/soccer-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soccer-ball-thin.imageset/soccer-ball-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/soccer-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-thin.imageset/sock-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sock.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sock-thin.imageset/sock-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sock.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-thin.imageset/solar-panel-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/solar-panel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-panel-thin.imageset/solar-panel-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/solar-panel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-thin.imageset/solar-roof-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/solar-roof.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/solar-roof-thin.imageset/solar-roof-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/solar-roof.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-thin.imageset/sort-ascending-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sort-ascending.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-ascending-thin.imageset/sort-ascending-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sort-ascending.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-thin.imageset/sort-descending-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sort-descending.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sort-descending-thin.imageset/sort-descending-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sort-descending.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-thin.imageset/soundcloud-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/soundcloud-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/soundcloud-logo-thin.imageset/soundcloud-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/soundcloud-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-thin.imageset/spade-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/spade.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spade-thin.imageset/spade-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/spade.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-thin.imageset/sparkle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sparkle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sparkle-thin.imageset/sparkle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sparkle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-thin.imageset/speaker-hifi-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-hifi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-hifi-thin.imageset/speaker-hifi-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-hifi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-thin.imageset/speaker-high-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-high-thin.imageset/speaker-high-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-thin.imageset/speaker-low-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-low-thin.imageset/speaker-low-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-thin.imageset/speaker-none-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-none-thin.imageset/speaker-none-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-thin.imageset/speaker-simple-high-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-simple-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-high-thin.imageset/speaker-simple-high-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-simple-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-thin.imageset/speaker-simple-low-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-simple-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-low-thin.imageset/speaker-simple-low-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-simple-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-thin.imageset/speaker-simple-none-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-simple-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-none-thin.imageset/speaker-simple-none-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-simple-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-thin.imageset/speaker-simple-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-simple-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-slash-thin.imageset/speaker-simple-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-simple-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-thin.imageset/speaker-simple-x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-simple-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-simple-x-thin.imageset/speaker-simple-x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-simple-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-thin.imageset/speaker-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-slash-thin.imageset/speaker-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-thin.imageset/speaker-x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speaker-x-thin.imageset/speaker-x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/speaker-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-thin.imageset/speedometer-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/speedometer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/speedometer-thin.imageset/speedometer-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/speedometer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-thin.imageset/sphere-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sphere.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sphere-thin.imageset/sphere-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sphere.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-thin.imageset/spinner-ball-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/spinner-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-ball-thin.imageset/spinner-ball-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/spinner-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-thin.imageset/spinner-gap-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/spinner-gap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-gap-thin.imageset/spinner-gap-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/spinner-gap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-thin.imageset/spinner-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/spinner.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spinner-thin.imageset/spinner-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/spinner.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-thin.imageset/spiral-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/spiral.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spiral-thin.imageset/spiral-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/spiral.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-thin.imageset/split-horizontal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/split-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-horizontal-thin.imageset/split-horizontal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/split-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-thin.imageset/split-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/split-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/split-vertical-thin.imageset/split-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/split-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-thin.imageset/spotify-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/spotify-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spotify-logo-thin.imageset/spotify-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/spotify-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-thin.imageset/spray-bottle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/spray-bottle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/spray-bottle-thin.imageset/spray-bottle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/spray-bottle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-thin.imageset/square-half-bottom-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/square-half-bottom.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-bottom-thin.imageset/square-half-bottom-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/square-half-bottom.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-thin.imageset/square-half-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/square-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-half-thin.imageset/square-half-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/square-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-thin.imageset/square-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/square-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-logo-thin.imageset/square-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/square-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-thin.imageset/square-split-horizontal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/square-split-horizontal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-horizontal-thin.imageset/square-split-horizontal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/square-split-horizontal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-thin.imageset/square-split-vertical-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/square-split-vertical.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-split-vertical-thin.imageset/square-split-vertical-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/square-split-vertical.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-thin.imageset/square-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/square-thin.imageset/square-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-thin.imageset/squares-four-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/squares-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/squares-four-thin.imageset/squares-four-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/squares-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-thin.imageset/stack-minus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/stack-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-minus-thin.imageset/stack-minus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/stack-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-thin.imageset/stack-overflow-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/stack-overflow-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-overflow-logo-thin.imageset/stack-overflow-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/stack-overflow-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-thin.imageset/stack-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/stack-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-plus-thin.imageset/stack-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/stack-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-thin.imageset/stack-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/stack-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-simple-thin.imageset/stack-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/stack-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-thin.imageset/stack-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/stack.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stack-thin.imageset/stack-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/stack.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-thin.imageset/stairs-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/stairs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stairs-thin.imageset/stairs-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/stairs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-thin.imageset/stamp-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/stamp.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stamp-thin.imageset/stamp-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/stamp.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-thin.imageset/standard-definition-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/standard-definition.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/standard-definition-thin.imageset/standard-definition-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/standard-definition.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-thin.imageset/star-and-crescent-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/star-and-crescent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-and-crescent-thin.imageset/star-and-crescent-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/star-and-crescent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-thin.imageset/star-four-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/star-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-four-thin.imageset/star-four-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/star-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-thin.imageset/star-half-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/star-half.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-half-thin.imageset/star-half-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/star-half.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-thin.imageset/star-of-david-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/star-of-david.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-of-david-thin.imageset/star-of-david-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/star-of-david.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-thin.imageset/star-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/star.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/star-thin.imageset/star-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/star.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-thin.imageset/steam-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/steam-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steam-logo-thin.imageset/steam-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/steam-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-thin.imageset/steering-wheel-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/steering-wheel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steering-wheel-thin.imageset/steering-wheel-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/steering-wheel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-thin.imageset/steps-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/steps.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/steps-thin.imageset/steps-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/steps.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-thin.imageset/stethoscope-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/stethoscope.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stethoscope-thin.imageset/stethoscope-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/stethoscope.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-thin.imageset/sticker-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sticker.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sticker-thin.imageset/sticker-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sticker.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-thin.imageset/stool-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/stool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stool-thin.imageset/stool-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/stool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-thin.imageset/stop-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/stop-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-circle-thin.imageset/stop-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/stop-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-thin.imageset/stop-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/stop.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stop-thin.imageset/stop-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/stop.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-thin.imageset/storefront-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/storefront.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/storefront-thin.imageset/storefront-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/storefront.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-thin.imageset/strategy-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/strategy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/strategy-thin.imageset/strategy-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/strategy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-thin.imageset/stripe-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/stripe-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/stripe-logo-thin.imageset/stripe-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/stripe-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-thin.imageset/student-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/student.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/student-thin.imageset/student-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/student.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-thin.imageset/subset-of-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/subset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-of-thin.imageset/subset-of-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/subset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-thin.imageset/subset-proper-of-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/subset-proper-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subset-proper-of-thin.imageset/subset-proper-of-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/subset-proper-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-thin.imageset/subtitles-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/subtitles-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-slash-thin.imageset/subtitles-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/subtitles-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-thin.imageset/subtitles-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/subtitles.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtitles-thin.imageset/subtitles-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/subtitles.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-thin.imageset/subtract-square-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/subtract-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-square-thin.imageset/subtract-square-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/subtract-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-thin.imageset/subtract-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/subtract.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subtract-thin.imageset/subtract-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/subtract.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-thin.imageset/subway-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/subway.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/subway-thin.imageset/subway-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/subway.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-thin.imageset/suitcase-rolling-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/suitcase-rolling.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-rolling-thin.imageset/suitcase-rolling-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/suitcase-rolling.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-thin.imageset/suitcase-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/suitcase-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-simple-thin.imageset/suitcase-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/suitcase-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-thin.imageset/suitcase-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/suitcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/suitcase-thin.imageset/suitcase-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/suitcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-thin.imageset/sun-dim-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sun-dim.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-dim-thin.imageset/sun-dim-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sun-dim.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-thin.imageset/sun-horizon-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sun-horizon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-horizon-thin.imageset/sun-horizon-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sun-horizon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-thin.imageset/sun-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sun.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sun-thin.imageset/sun-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sun.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-thin.imageset/sunglasses-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sunglasses.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sunglasses-thin.imageset/sunglasses-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sunglasses.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-thin.imageset/superset-of-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/superset-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-of-thin.imageset/superset-of-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/superset-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-thin.imageset/superset-proper-of-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/superset-proper-of.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/superset-proper-of-thin.imageset/superset-proper-of-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/superset-proper-of.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-thin.imageset/swap-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/swap.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swap-thin.imageset/swap-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/swap.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-thin.imageset/swatches-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/swatches.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swatches-thin.imageset/swatches-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/swatches.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-thin.imageset/swimming-pool-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/swimming-pool.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/swimming-pool-thin.imageset/swimming-pool-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/swimming-pool.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-thin.imageset/sword-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/sword.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/sword-thin.imageset/sword-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/sword.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-thin.imageset/synagogue-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/synagogue.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/synagogue-thin.imageset/synagogue-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/synagogue.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-thin.imageset/syringe-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/syringe.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/syringe-thin.imageset/syringe-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/syringe.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-thin.imageset/t-shirt-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/t-shirt.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/t-shirt-thin.imageset/t-shirt-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/t-shirt.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-thin.imageset/table-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/table.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/table-thin.imageset/table-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/table.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-thin.imageset/tabs-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tabs.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tabs-thin.imageset/tabs-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tabs.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-thin.imageset/tag-chevron-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tag-chevron.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-chevron-thin.imageset/tag-chevron-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tag-chevron.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-thin.imageset/tag-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tag-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-simple-thin.imageset/tag-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tag-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-thin.imageset/tag-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tag-thin.imageset/tag-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-thin.imageset/target-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/target.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/target-thin.imageset/target-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/target.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-thin.imageset/taxi-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/taxi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/taxi-thin.imageset/taxi-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/taxi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-thin.imageset/tea-bag-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tea-bag.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tea-bag-thin.imageset/tea-bag-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tea-bag.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-thin.imageset/telegram-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/telegram-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/telegram-logo-thin.imageset/telegram-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/telegram-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-thin.imageset/television-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/television-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-simple-thin.imageset/television-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/television-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-thin.imageset/television-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/television.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/television-thin.imageset/television-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/television.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-thin.imageset/tennis-ball-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tennis-ball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tennis-ball-thin.imageset/tennis-ball-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tennis-ball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-thin.imageset/tent-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tent-thin.imageset/tent-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-thin.imageset/terminal-window-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/terminal-window.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-window-thin.imageset/terminal-window-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/terminal-window.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-thin.imageset/terminal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/terminal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/terminal-thin.imageset/terminal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/terminal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-thin.imageset/test-tube-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/test-tube.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/test-tube-thin.imageset/test-tube-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/test-tube.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-thin.imageset/text-a-underline-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-a-underline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-a-underline-thin.imageset/text-a-underline-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-a-underline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-thin.imageset/text-aa-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-aa.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-aa-thin.imageset/text-aa-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-aa.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-thin.imageset/text-align-center-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-align-center.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-center-thin.imageset/text-align-center-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-align-center.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-thin.imageset/text-align-justify-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-align-justify.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-justify-thin.imageset/text-align-justify-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-align-justify.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-thin.imageset/text-align-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-align-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-left-thin.imageset/text-align-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-align-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-thin.imageset/text-align-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-align-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-align-right-thin.imageset/text-align-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-align-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-thin.imageset/text-b-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-b.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-b-thin.imageset/text-b-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-b.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-thin.imageset/text-columns-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-columns.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-columns-thin.imageset/text-columns-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-columns.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-thin.imageset/text-h-five-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-h-five.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-five-thin.imageset/text-h-five-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-h-five.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-thin.imageset/text-h-four-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-h-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-four-thin.imageset/text-h-four-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-h-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-thin.imageset/text-h-one-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-h-one.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-one-thin.imageset/text-h-one-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-h-one.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-thin.imageset/text-h-six-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-h-six.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-six-thin.imageset/text-h-six-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-h-six.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-thin.imageset/text-h-three-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-h-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-three-thin.imageset/text-h-three-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-h-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-thin.imageset/text-h-two-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-h-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-two-thin.imageset/text-h-two-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-h-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-thin.imageset/text-h-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-h.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-h-thin.imageset/text-h-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-h.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-thin.imageset/text-indent-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-indent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-indent-thin.imageset/text-indent-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-indent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-thin.imageset/text-italic-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-italic.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-italic-thin.imageset/text-italic-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-italic.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-thin.imageset/text-outdent-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-outdent.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-outdent-thin.imageset/text-outdent-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-outdent.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-thin.imageset/text-strikethrough-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-strikethrough.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-strikethrough-thin.imageset/text-strikethrough-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-strikethrough.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-thin.imageset/text-subscript-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-subscript.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-subscript-thin.imageset/text-subscript-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-subscript.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-thin.imageset/text-superscript-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-superscript.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-superscript-thin.imageset/text-superscript-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-superscript.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-thin.imageset/text-t-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-t-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-slash-thin.imageset/text-t-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-t-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-thin.imageset/text-t-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-t.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-t-thin.imageset/text-t-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-t.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-thin.imageset/text-underline-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-underline.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/text-underline-thin.imageset/text-underline-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/text-underline.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-thin.imageset/textbox-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/textbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/textbox-thin.imageset/textbox-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/textbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-thin.imageset/thermometer-cold-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/thermometer-cold.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-cold-thin.imageset/thermometer-cold-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/thermometer-cold.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-thin.imageset/thermometer-hot-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/thermometer-hot.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-hot-thin.imageset/thermometer-hot-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/thermometer-hot.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-thin.imageset/thermometer-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/thermometer-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-simple-thin.imageset/thermometer-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/thermometer-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-thin.imageset/thermometer-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/thermometer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thermometer-thin.imageset/thermometer-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/thermometer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-thin.imageset/threads-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/threads-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/threads-logo-thin.imageset/threads-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/threads-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-thin.imageset/three-d-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/three-d.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/three-d-thin.imageset/three-d-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/three-d.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-thin.imageset/thumbs-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/thumbs-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-down-thin.imageset/thumbs-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/thumbs-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-thin.imageset/thumbs-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/thumbs-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/thumbs-up-thin.imageset/thumbs-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/thumbs-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-thin.imageset/ticket-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/ticket.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/ticket-thin.imageset/ticket-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/ticket.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-thin.imageset/tidal-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tidal-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tidal-logo-thin.imageset/tidal-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tidal-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-thin.imageset/tiktok-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tiktok-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tiktok-logo-thin.imageset/tiktok-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tiktok-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-thin.imageset/tilde-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tilde.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tilde-thin.imageset/tilde-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tilde.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-thin.imageset/timer-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/timer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/timer-thin.imageset/timer-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/timer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-thin.imageset/tip-jar-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tip-jar.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tip-jar-thin.imageset/tip-jar-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tip-jar.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-thin.imageset/tipi-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tipi.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tipi-thin.imageset/tipi-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tipi.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-thin.imageset/tire-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tire.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tire-thin.imageset/tire-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tire.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-thin.imageset/toggle-left-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/toggle-left.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-left-thin.imageset/toggle-left-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/toggle-left.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-thin.imageset/toggle-right-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/toggle-right.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toggle-right-thin.imageset/toggle-right-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/toggle-right.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-thin.imageset/toilet-paper-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/toilet-paper.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-paper-thin.imageset/toilet-paper-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/toilet-paper.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-thin.imageset/toilet-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/toilet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toilet-thin.imageset/toilet-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/toilet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-thin.imageset/toolbox-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/toolbox.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/toolbox-thin.imageset/toolbox-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/toolbox.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-thin.imageset/tooth-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tooth-thin.imageset/tooth-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-thin.imageset/tornado-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tornado.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tornado-thin.imageset/tornado-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tornado.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-thin.imageset/tote-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tote-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-simple-thin.imageset/tote-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tote-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-thin.imageset/tote-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tote.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tote-thin.imageset/tote-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tote.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-thin.imageset/towel-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/towel.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/towel-thin.imageset/towel-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/towel.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-thin.imageset/tractor-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tractor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tractor-thin.imageset/tractor-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tractor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-thin.imageset/trademark-registered-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/trademark-registered.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-registered-thin.imageset/trademark-registered-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/trademark-registered.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-thin.imageset/trademark-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/trademark.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trademark-thin.imageset/trademark-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/trademark.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-thin.imageset/traffic-cone-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/traffic-cone.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-cone-thin.imageset/traffic-cone-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/traffic-cone.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-thin.imageset/traffic-sign-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/traffic-sign.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-sign-thin.imageset/traffic-sign-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/traffic-sign.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-thin.imageset/traffic-signal-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/traffic-signal.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/traffic-signal-thin.imageset/traffic-signal-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/traffic-signal.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-thin.imageset/train-regional-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/train-regional.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-regional-thin.imageset/train-regional-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/train-regional.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-thin.imageset/train-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/train-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-simple-thin.imageset/train-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/train-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-thin.imageset/train-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/train.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/train-thin.imageset/train-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/train.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-thin.imageset/tram-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tram.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tram-thin.imageset/tram-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tram.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-thin.imageset/translate-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/translate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/translate-thin.imageset/translate-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/translate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-thin.imageset/trash-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/trash-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-simple-thin.imageset/trash-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/trash-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-thin.imageset/trash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/trash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trash-thin.imageset/trash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/trash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-thin.imageset/archive-tray-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tray-arrow-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/archive-tray-thin.imageset/archive-tray-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tray-arrow-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-thin.imageset/tray-arrow-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tray-arrow-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-arrow-up-thin.imageset/tray-arrow-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tray-arrow-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-thin.imageset/tray-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tray.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tray-thin.imageset/tray-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tray.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-thin.imageset/treasure-chest-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/treasure-chest.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/treasure-chest-thin.imageset/treasure-chest-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/treasure-chest.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-thin.imageset/tree-evergreen-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tree-evergreen.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-evergreen-thin.imageset/tree-evergreen-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tree-evergreen.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-thin.imageset/tree-palm-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tree-palm.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-palm-thin.imageset/tree-palm-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tree-palm.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-thin.imageset/tree-structure-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tree-structure.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-structure-thin.imageset/tree-structure-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tree-structure.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-thin.imageset/tree-view-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tree-view.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-view-thin.imageset/tree-view-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tree-view.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-thin.imageset/tree-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tree.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tree-thin.imageset/tree-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tree.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-thin.imageset/trend-down-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/trend-down.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-down-thin.imageset/trend-down-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/trend-down.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-thin.imageset/trend-up-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/trend-up.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trend-up-thin.imageset/trend-up-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/trend-up.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-thin.imageset/triangle-dashed-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/triangle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-dashed-thin.imageset/triangle-dashed-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/triangle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-thin.imageset/triangle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/triangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/triangle-thin.imageset/triangle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/triangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-thin.imageset/trolley-suitcase-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/trolley-suitcase.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-suitcase-thin.imageset/trolley-suitcase-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/trolley-suitcase.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-thin.imageset/trolley-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/trolley.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trolley-thin.imageset/trolley-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/trolley.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-thin.imageset/trophy-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/trophy.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/trophy-thin.imageset/trophy-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/trophy.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-thin.imageset/truck-trailer-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/truck-trailer.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-trailer-thin.imageset/truck-trailer-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/truck-trailer.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-thin.imageset/truck-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/truck.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/truck-thin.imageset/truck-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/truck.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-thin.imageset/tumblr-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/tumblr-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/tumblr-logo-thin.imageset/tumblr-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/tumblr-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-thin.imageset/twitch-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/twitch-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitch-logo-thin.imageset/twitch-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/twitch-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-thin.imageset/twitter-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/twitter-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/twitter-logo-thin.imageset/twitter-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/twitter-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-thin.imageset/umbrella-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/umbrella-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-simple-thin.imageset/umbrella-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/umbrella-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-thin.imageset/umbrella-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/umbrella.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/umbrella-thin.imageset/umbrella-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/umbrella.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-thin.imageset/union-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/union.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/union-thin.imageset/union-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/union.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-thin.imageset/unite-square-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/unite-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-square-thin.imageset/unite-square-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/unite-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-thin.imageset/unite-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/unite.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/unite-thin.imageset/unite-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/unite.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-thin.imageset/upload-simple-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/upload-simple.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-simple-thin.imageset/upload-simple-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/upload-simple.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-thin.imageset/upload-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/upload.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/upload-thin.imageset/upload-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/upload.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-thin.imageset/usb-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/usb.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/usb-thin.imageset/usb-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/usb.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-thin.imageset/user-check-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-check-thin.imageset/user-check-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-thin.imageset/user-circle-check-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-circle-check.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-check-thin.imageset/user-circle-check-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-circle-check.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-thin.imageset/user-circle-dashed-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-circle-dashed.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-dashed-thin.imageset/user-circle-dashed-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-circle-dashed.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-thin.imageset/user-circle-gear-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-circle-gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-gear-thin.imageset/user-circle-gear-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-circle-gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-thin.imageset/user-circle-minus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-circle-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-minus-thin.imageset/user-circle-minus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-circle-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-thin.imageset/user-circle-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-circle-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-plus-thin.imageset/user-circle-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-circle-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-thin.imageset/user-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-circle-thin.imageset/user-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-thin.imageset/user-focus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-focus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-focus-thin.imageset/user-focus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-focus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-thin.imageset/user-gear-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-gear.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-gear-thin.imageset/user-gear-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-gear.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-thin.imageset/user-list-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-list.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-list-thin.imageset/user-list-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-list.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-thin.imageset/user-minus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-minus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-minus-thin.imageset/user-minus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-minus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-thin.imageset/user-plus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-plus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-plus-thin.imageset/user-plus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-plus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-thin.imageset/user-rectangle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-rectangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-rectangle-thin.imageset/user-rectangle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-rectangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-thin.imageset/user-sound-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-sound.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-sound-thin.imageset/user-sound-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-sound.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-thin.imageset/user-square-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-square-thin.imageset/user-square-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-thin.imageset/user-switch-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-switch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-switch-thin.imageset/user-switch-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user-switch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-thin.imageset/user-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/user.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/user-thin.imageset/user-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/user.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-thin.imageset/users-four-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/users-four.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-four-thin.imageset/users-four-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/users-four.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-thin.imageset/users-three-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/users-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-three-thin.imageset/users-three-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/users-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-thin.imageset/users-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/users.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/users-thin.imageset/users-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/users.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-thin.imageset/van-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/van.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/van-thin.imageset/van-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/van.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-thin.imageset/vault-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/vault.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vault-thin.imageset/vault-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/vault.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-thin.imageset/vector-three-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/vector-three.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-three-thin.imageset/vector-three-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/vector-three.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-thin.imageset/vector-two-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/vector-two.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vector-two-thin.imageset/vector-two-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/vector-two.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-thin.imageset/vibrate-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/vibrate.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vibrate-thin.imageset/vibrate-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/vibrate.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-thin.imageset/video-camera-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/video-camera-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-slash-thin.imageset/video-camera-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/video-camera-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-thin.imageset/video-camera-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/video-camera.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-camera-thin.imageset/video-camera-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/video-camera.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-thin.imageset/video-conference-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/video-conference.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-conference-thin.imageset/video-conference-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/video-conference.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-thin.imageset/video-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/video.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/video-thin.imageset/video-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/video.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-thin.imageset/vignette-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/vignette.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vignette-thin.imageset/vignette-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/vignette.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-thin.imageset/vinyl-record-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/vinyl-record.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/vinyl-record-thin.imageset/vinyl-record-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/vinyl-record.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-thin.imageset/virtual-reality-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/virtual-reality.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virtual-reality-thin.imageset/virtual-reality-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/virtual-reality.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-thin.imageset/virus-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/virus.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/virus-thin.imageset/virus-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/virus.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-thin.imageset/visor-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/visor.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/visor-thin.imageset/visor-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/visor.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-thin.imageset/voicemail-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/voicemail.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/voicemail-thin.imageset/voicemail-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/voicemail.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-thin.imageset/volleyball-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/volleyball.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/volleyball-thin.imageset/volleyball-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/volleyball.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-thin.imageset/wall-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wall.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wall-thin.imageset/wall-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wall.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-thin.imageset/wallet-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wallet.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wallet-thin.imageset/wallet-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wallet.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-thin.imageset/warehouse-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/warehouse.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warehouse-thin.imageset/warehouse-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/warehouse.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-thin.imageset/warning-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/warning-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-circle-thin.imageset/warning-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/warning-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-thin.imageset/warning-diamond-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/warning-diamond.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-diamond-thin.imageset/warning-diamond-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/warning-diamond.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-thin.imageset/warning-octagon-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/warning-octagon.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-octagon-thin.imageset/warning-octagon-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/warning-octagon.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-thin.imageset/warning-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/warning.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/warning-thin.imageset/warning-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/warning.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-thin.imageset/washing-machine-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/washing-machine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/washing-machine-thin.imageset/washing-machine-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/washing-machine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-thin.imageset/watch-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/watch.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/watch-thin.imageset/watch-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/watch.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-thin.imageset/wave-sawtooth-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wave-sawtooth.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sawtooth-thin.imageset/wave-sawtooth-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wave-sawtooth.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-thin.imageset/wave-sine-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wave-sine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-sine-thin.imageset/wave-sine-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wave-sine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-thin.imageset/wave-square-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wave-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-square-thin.imageset/wave-square-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wave-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-thin.imageset/wave-triangle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wave-triangle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wave-triangle-thin.imageset/wave-triangle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wave-triangle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-thin.imageset/waveform-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/waveform-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-slash-thin.imageset/waveform-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/waveform-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-thin.imageset/waveform-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/waveform.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waveform-thin.imageset/waveform-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/waveform.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-thin.imageset/waves-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/waves.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/waves-thin.imageset/waves-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/waves.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-thin.imageset/webcam-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/webcam-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-slash-thin.imageset/webcam-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/webcam-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-thin.imageset/webcam-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/webcam.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webcam-thin.imageset/webcam-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/webcam.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-thin.imageset/webhooks-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/webhooks-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/webhooks-logo-thin.imageset/webhooks-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/webhooks-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-thin.imageset/wechat-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wechat-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wechat-logo-thin.imageset/wechat-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wechat-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-thin.imageset/whatsapp-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/whatsapp-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/whatsapp-logo-thin.imageset/whatsapp-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/whatsapp-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-thin.imageset/wheelchair-motion-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wheelchair-motion.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-motion-thin.imageset/wheelchair-motion-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wheelchair-motion.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-thin.imageset/wheelchair-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wheelchair.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wheelchair-thin.imageset/wheelchair-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wheelchair.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-thin.imageset/wifi-high-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wifi-high.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-high-thin.imageset/wifi-high-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wifi-high.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-thin.imageset/wifi-low-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wifi-low.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-low-thin.imageset/wifi-low-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wifi-low.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-thin.imageset/wifi-medium-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wifi-medium.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-medium-thin.imageset/wifi-medium-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wifi-medium.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-thin.imageset/wifi-none-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wifi-none.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-none-thin.imageset/wifi-none-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wifi-none.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-thin.imageset/wifi-slash-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wifi-slash.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-slash-thin.imageset/wifi-slash-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wifi-slash.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-thin.imageset/wifi-x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wifi-x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wifi-x-thin.imageset/wifi-x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wifi-x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-thin.imageset/wind-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wind.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wind-thin.imageset/wind-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wind.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-thin.imageset/windmill-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/windmill.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windmill-thin.imageset/windmill-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/windmill.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-thin.imageset/windows-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/windows-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/windows-logo-thin.imageset/windows-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/windows-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-thin.imageset/wine-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wine.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wine-thin.imageset/wine-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wine.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-thin.imageset/wrench-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/wrench.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/wrench-thin.imageset/wrench-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/wrench.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-thin.imageset/x-circle-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/x-circle.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-circle-thin.imageset/x-circle-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/x-circle.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-thin.imageset/x-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/x-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-logo-thin.imageset/x-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/x-logo.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-thin.imageset/x-square-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/x-square.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-square-thin.imageset/x-square-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/x-square.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-thin.imageset/x-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/x.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/x-thin.imageset/x-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/x.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-thin.imageset/yarn-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/yarn.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yarn-thin.imageset/yarn-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/yarn.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-thin.imageset/yin-yang-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/yin-yang.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/yin-yang-thin.imageset/yin-yang-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/yin-yang.svg diff --git a/Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-thin.imageset/youtube-logo-thin.svg b/Sources/PhosphorSwift/Resources/BaseSVGs/thin/youtube-logo.svg similarity index 100% rename from Sources/PhosphorSwift/Resources/Assets.xcassets/SVG/youtube-logo-thin.imageset/youtube-logo-thin.svg rename to Sources/PhosphorSwift/Resources/BaseSVGs/thin/youtube-logo.svg diff --git a/Sources/PhosphorSwift/SVGParser.swift b/Sources/PhosphorSwift/SVGParser.swift new file mode 100644 index 000000000..3a1c4229d --- /dev/null +++ b/Sources/PhosphorSwift/SVGParser.swift @@ -0,0 +1,184 @@ +// +// SVGParser.swift +// Phosphor Icons +// +// Created by Phosphor Contributors. +// + +import Foundation +import CoreGraphics + +/// Fast, focused SVG parser designed specifically for Phosphor icons +/// Optimized for the known structure and constraints of Phosphor SVG files +public enum SVGParser { + + /// Parse a Phosphor SVG string into structured data + /// - Parameter svgString: Raw SVG content + /// - Returns: Parsed SVG data or nil if parsing fails + public static func parse(_ svgString: String) -> SVGData? { + let defaults = extractDefaults(from: svgString) + + guard let viewBox = extractViewBox(from: svgString), + let paths = extractPaths(from: svgString, defaults: defaults) else { + return nil + } + + return SVGData(viewBox: viewBox, paths: paths) + } + + /// Extract viewBox dimensions from SVG + private static func extractViewBox(from svgString: String) -> CGRect? { + // Phosphor icons use standard viewBox="0 0 256 256" + let viewBoxPattern = #"viewBox="([^"]+)""# + + guard let regex = try? NSRegularExpression(pattern: viewBoxPattern), + let match = regex.firstMatch(in: svgString, range: NSRange(svgString.startIndex..., in: svgString)), + let viewBoxRange = Range(match.range(at: 1), in: svgString) else { + // Default fallback for Phosphor icons + return CGRect(x: 0, y: 0, width: 256, height: 256) + } + + let viewBoxValues = String(svgString[viewBoxRange]) + .split(separator: " ") + .compactMap { Double($0) } + + guard viewBoxValues.count == 4 else { + return CGRect(x: 0, y: 0, width: 256, height: 256) + } + + return CGRect( + x: viewBoxValues[0], + y: viewBoxValues[1], + width: viewBoxValues[2], + height: viewBoxValues[3] + ) + } + + /// Extract all path elements from SVG + private static func extractPaths(from svgString: String, defaults: SVGDefaults) -> [SVGPath]? { + // Match path elements with their attributes + let pathPattern = #"]*d="([^"]+)"[^>]*/?>"# + + guard let regex = try? NSRegularExpression(pattern: pathPattern, options: .caseInsensitive) else { + return nil + } + + let matches = regex.matches(in: svgString, range: NSRange(svgString.startIndex..., in: svgString)) + + let paths: [SVGPath] = matches.compactMap { match in + guard let pathRange = Range(match.range(at: 1), in: svgString) else { + return nil + } + + let pathData = String(svgString[pathRange]) + + // Extract the full path element for attribute parsing + guard let fullMatchRange = Range(match.range(at: 0), in: svgString) else { + return SVGPath(pathData: pathData) + } + + let fullPathElement = String(svgString[fullMatchRange]) + + // Parse attributes from the path element + let attributes = parsePathAttributes(from: fullPathElement) + + let fillValue = attributes["fill"] ?? defaults.fill + let strokeValue = attributes["stroke"] ?? defaults.stroke + let fillOpacity = attributes["fill-opacity"].flatMap { Double($0) } + let strokeOpacity = attributes["stroke-opacity"].flatMap { Double($0) } + let opacity = attributes["opacity"].flatMap { Double($0) } + + return SVGPath( + pathData: pathData, + fillRule: attributes["fill-rule"], + strokeWidth: attributes["stroke-width"].flatMap { Double($0) }, + fill: fillValue, + stroke: strokeValue, + opacity: opacity, + fillOpacity: fillOpacity, + strokeOpacity: strokeOpacity + ) + } + + return paths.isEmpty ? nil : paths + } + + /// Parse attributes from a path element string + private static func parsePathAttributes(from pathElement: String) -> [String: String] { + var attributes: [String: String] = [:] + + // Common Phosphor SVG attributes + let attributePatterns = [ + "fill": #"fill="([^"]+)""#, + "stroke": #"stroke="([^"]+)""#, + "stroke-width": #"stroke-width="([^"]+)""#, + "fill-rule": #"fill-rule="([^"]+)""#, + "opacity": #"opacity="([^"]+)""#, + "fill-opacity": #"fill-opacity="([^"]+)""#, + "stroke-opacity": #"stroke-opacity="([^"]+)""# + ] + + for (attribute, pattern) in attributePatterns { + if let regex = try? NSRegularExpression(pattern: pattern, options: .caseInsensitive), + let match = regex.firstMatch(in: pathElement, range: NSRange(pathElement.startIndex..., in: pathElement)), + let valueRange = Range(match.range(at: 1), in: pathElement) { + attributes[attribute] = String(pathElement[valueRange]) + } + } + + return attributes + } +} + +/// Represents default attributes inherited from the root SVG element +struct SVGDefaults { + let fill: String? + let stroke: String? +} + +private extension SVGParser { + static func extractDefaults(from svgString: String) -> SVGDefaults { + let fillPattern = #"]*fill="([^"]+)""# + let strokePattern = #"]*stroke="([^"]+)""# + + let fill = matchFirst(in: svgString, pattern: fillPattern) + let stroke = matchFirst(in: svgString, pattern: strokePattern) + + return SVGDefaults(fill: fill, stroke: stroke) + } + + static func matchFirst(in string: String, pattern: String) -> String? { + guard let regex = try? NSRegularExpression(pattern: pattern, options: .caseInsensitive), + let match = regex.firstMatch(in: string, range: NSRange(string.startIndex..., in: string)), + let valueRange = Range(match.range(at: 1), in: string) else { + return nil + } + return String(string[valueRange]) + } +} + +/// Utility extensions for SVG parsing +extension SVGParser { + + /// Validates that an SVG string has the expected Phosphor format + public static func isValidPhosphorSVG(_ svgString: String) -> Bool { + // Basic validation checks + return svgString.contains("") + } + + /// Extract SVG title/description if present (for accessibility) + public static func extractTitle(from svgString: String) -> String? { + let titlePattern = #"([^<]+)"# + + guard let regex = try? NSRegularExpression(pattern: titlePattern, options: .caseInsensitive), + let match = regex.firstMatch(in: svgString, range: NSRange(svgString.startIndex..., in: svgString)), + let titleRange = Range(match.range(at: 1), in: svgString) else { + return nil + } + + return String(svgString[titleRange]) + } +} diff --git a/Sources/PhosphorSwift/SVGRasterizer.swift b/Sources/PhosphorSwift/SVGRasterizer.swift new file mode 100644 index 000000000..7ec0a67a1 --- /dev/null +++ b/Sources/PhosphorSwift/SVGRasterizer.swift @@ -0,0 +1,555 @@ +// +// SVGRasterizer.swift +// Phosphor Icons +// +// Created by Phosphor Contributors. +// + +import Foundation +import CoreGraphics +import CoreText + +/// Converts parsed SVG data into rasterized CGImage for display +/// Optimized for Phosphor icon characteristics and common use cases +public enum SVGRasterizer { + + /// Rasterize SVG data to a CGImage at specified size + /// - Parameters: + /// - svgData: Parsed SVG data to render + /// - size: Target size for the output image + /// - Returns: Rasterized CGImage or nil if rendering fails + public static func rasterize(_ svgData: SVGData, to size: CGSize) -> CGImage? { + + // Create graphics context + guard let context = createGraphicsContext(size: size) else { + return nil + } + + // Calculate scale transform from viewBox to target size + let scaleX = size.width / svgData.viewBox.width + let scaleY = size.height / svgData.viewBox.height + let scale = min(scaleX, scaleY) // Maintain aspect ratio + + // Center the scaled content + let scaledSize = CGSize( + width: svgData.viewBox.width * scale, + height: svgData.viewBox.height * scale + ) + let offsetX = (size.width - scaledSize.width) / 2 + let offsetY = (size.height - scaledSize.height) / 2 + + // Apply transforms + context.translateBy(x: offsetX, y: size.height - offsetY) + context.scaleBy(x: scale, y: -scale) // Flip Y-axis for SVG coordinate system + context.translateBy(x: -svgData.viewBox.origin.x, y: -svgData.viewBox.origin.y) + + // Render each path + for path in svgData.paths { + renderPath(path, in: context) + } + + return context.makeImage() + } + + /// Create optimized graphics context for icon rendering + private static func createGraphicsContext(size: CGSize) -> CGContext? { + let colorSpace = CGColorSpaceCreateDeviceRGB() + let bitmapInfo = CGImageAlphaInfo.premultipliedLast.rawValue + + return CGContext( + data: nil, + width: Int(size.width), + height: Int(size.height), + bitsPerComponent: 8, + bytesPerRow: 0, + space: colorSpace, + bitmapInfo: bitmapInfo + ) + } + + /// Render a single SVG path in the graphics context + private static func renderPath(_ svgPath: SVGPath, in context: CGContext) { + + guard let cgPath = createCGPath(from: svgPath.pathData) else { + return + } + + // Apply fill if specified + if let fill = svgPath.fill, !isNone(fill) { + let alpha = effectiveAlpha(base: svgPath.opacity, component: svgPath.fillOpacity) + if alpha > 0 { + context.saveGState() + context.addPath(cgPath) + context.setFillColor(colorFromString(fill, alpha: alpha)) + let mode: CGPathDrawingMode = svgPath.fillRule?.lowercased() == "evenodd" ? .eoFill : .fill + context.drawPath(using: mode) + context.restoreGState() + } + } + + // Apply stroke if specified + if let stroke = svgPath.stroke, !isNone(stroke) { + let alpha = effectiveAlpha(base: svgPath.opacity, component: svgPath.strokeOpacity) + if alpha > 0 { + context.saveGState() + context.addPath(cgPath) + context.setStrokeColor(colorFromString(stroke, alpha: alpha)) + context.setLineWidth(svgPath.strokeWidth ?? 1.5) + context.setLineCap(.round) + context.setLineJoin(.round) + context.setMiterLimit(4.0) + context.drawPath(using: .stroke) + context.restoreGState() + } + } + } + + /// Create CGPath from SVG path data string + private static func createCGPath(from pathData: String) -> CGPath? { + let path = CGMutablePath() + let scanner = Scanner(string: pathData) + scanner.charactersToBeSkipped = CharacterSet(charactersIn: " ,\n\t\r") + + var currentPoint = CGPoint.zero + var subpathStartPoint = CGPoint.zero + var lastCubicControl: CGPoint? + var lastQuadraticControl: CGPoint? + var currentCommand: Character? + + while !scanner.isAtEnd { + if let nextCommand = nextCommand(in: scanner) { + currentCommand = nextCommand + } else if currentCommand == nil { + break + } + + guard let command = currentCommand else { break } + + switch command { + case "M", "m": + let isRelative = command == "m" + guard let point = scanPoint(scanner, relativeTo: currentPoint, isRelative: isRelative) else { return nil } + path.move(to: point) + currentPoint = point + subpathStartPoint = point + lastCubicControl = nil + lastQuadraticControl = nil + + while let nextPoint = scanPoint(scanner, relativeTo: currentPoint, isRelative: isRelative) { + path.addLine(to: nextPoint) + currentPoint = nextPoint + } + + currentCommand = isRelative ? "l" : "L" + + case "L", "l": + let isRelative = command == "l" + while let point = scanPoint(scanner, relativeTo: currentPoint, isRelative: isRelative) { + path.addLine(to: point) + currentPoint = point + } + lastCubicControl = nil + lastQuadraticControl = nil + + case "H", "h": + let isRelative = command == "h" + while let x = scanner.scanDouble() { + let newX = isRelative ? currentPoint.x + CGFloat(x) : CGFloat(x) + currentPoint = CGPoint(x: newX, y: currentPoint.y) + path.addLine(to: currentPoint) + } + lastCubicControl = nil + lastQuadraticControl = nil + + case "V", "v": + let isRelative = command == "v" + while let y = scanner.scanDouble() { + let newY = isRelative ? currentPoint.y + CGFloat(y) : CGFloat(y) + currentPoint = CGPoint(x: currentPoint.x, y: newY) + path.addLine(to: currentPoint) + } + lastCubicControl = nil + lastQuadraticControl = nil + + case "C", "c": + let isRelative = command == "c" + while true { + let start = currentPoint + guard let cp1 = scanPoint(scanner, relativeTo: start, isRelative: isRelative), + let cp2 = scanPoint(scanner, relativeTo: start, isRelative: isRelative), + let end = scanPoint(scanner, relativeTo: start, isRelative: isRelative) else { break } + path.addCurve(to: end, control1: cp1, control2: cp2) + currentPoint = end + lastCubicControl = cp2 + lastQuadraticControl = nil + } + + case "S", "s": + let isRelative = command == "s" + while true { + let start = currentPoint + guard let cp2 = scanPoint(scanner, relativeTo: start, isRelative: isRelative), + let end = scanPoint(scanner, relativeTo: start, isRelative: isRelative) else { break } + let reflected = lastCubicControl.map { reflect($0, over: start) } ?? start + path.addCurve(to: end, control1: reflected, control2: cp2) + currentPoint = end + lastCubicControl = cp2 + lastQuadraticControl = nil + } + + case "Q", "q": + let isRelative = command == "q" + while true { + let start = currentPoint + guard let control = scanPoint(scanner, relativeTo: start, isRelative: isRelative), + let end = scanPoint(scanner, relativeTo: start, isRelative: isRelative) else { break } + path.addQuadCurve(to: end, control: control) + currentPoint = end + lastQuadraticControl = control + lastCubicControl = nil + } + + case "T", "t": + let isRelative = command == "t" + while true { + let start = currentPoint + guard let end = scanPoint(scanner, relativeTo: start, isRelative: isRelative) else { break } + let control = lastQuadraticControl.map { reflect($0, over: start) } ?? start + path.addQuadCurve(to: end, control: control) + currentPoint = end + lastQuadraticControl = control + lastCubicControl = nil + } + + case "A", "a": + let isRelative = command == "a" + while true { + let start = currentPoint + guard let arc = scanArc(scanner, currentPoint: start, isRelative: isRelative) else { break } + addArc(path: path, currentPoint: ¤tPoint, startPoint: start, arc: arc) + lastCubicControl = nil + lastQuadraticControl = nil + } + + case "Z", "z": + path.closeSubpath() + currentPoint = subpathStartPoint + lastCubicControl = nil + lastQuadraticControl = nil + + default: + break + } + } + + return path.copy() + } + + private static func nextCommand(in scanner: Scanner) -> Character? { + let string = scanner.string + var index = scanner.currentIndex + while index < string.endIndex { + let character = string[index] + if character.isLetter { + scanner.currentIndex = string.index(after: index) + return character + } + if character == "," || character.isWhitespace { + index = string.index(after: index) + continue + } + break + } + return nil + } + + private static func scanPoint(_ scanner: Scanner, relativeTo base: CGPoint, isRelative: Bool) -> CGPoint? { + guard let x = scanner.scanDouble(), let y = scanner.scanDouble() else { + return nil + } + var point = CGPoint(x: CGFloat(x), y: CGFloat(y)) + if isRelative { + point.x += base.x + point.y += base.y + } + return point + } + + private static func reflect(_ point: CGPoint, over reference: CGPoint) -> CGPoint { + CGPoint(x: 2 * reference.x - point.x, y: 2 * reference.y - point.y) + } + + private struct ArcParameters { + let rx: CGFloat + let ry: CGFloat + let rotation: CGFloat + let largeArc: Bool + let sweep: Bool + let endPoint: CGPoint + } + + private static func scanArc(_ scanner: Scanner, currentPoint: CGPoint, isRelative: Bool) -> ArcParameters? { + guard let rx = scanner.scanDouble(), + let ry = scanner.scanDouble(), + let rotation = scanner.scanDouble(), + let largeArcFlag = scanner.scanDouble(), + let sweepFlag = scanner.scanDouble(), + let endPoint = scanPoint(scanner, relativeTo: currentPoint, isRelative: isRelative) else { + return nil + } + return ArcParameters( + rx: CGFloat(abs(rx)), + ry: CGFloat(abs(ry)), + rotation: CGFloat(rotation * .pi / 180.0), + largeArc: largeArcFlag != 0, + sweep: sweepFlag != 0, + endPoint: endPoint + ) + } + + /// Converts an SVG elliptical arc command into cubic Bézier segments and appends them to the path. + private static func addArc(path: CGMutablePath, + currentPoint: inout CGPoint, + startPoint: CGPoint, + arc: ArcParameters) { + var rx = arc.rx + var ry = arc.ry + let rotation = arc.rotation + let endPoint = arc.endPoint + + if rx == 0 || ry == 0 || startPoint == endPoint { + path.addLine(to: endPoint) + currentPoint = endPoint + return + } + + let cosPhi = cos(rotation) + let sinPhi = sin(rotation) + let dx2 = (startPoint.x - endPoint.x) / 2.0 + let dy2 = (startPoint.y - endPoint.y) / 2.0 + + let x1p = cosPhi * dx2 + sinPhi * dy2 + let y1p = -sinPhi * dx2 + cosPhi * dy2 + + var rxSq = rx * rx + var rySq = ry * ry + let x1pSq = x1p * x1p + let y1pSq = y1p * y1p + + let lambda = (x1pSq / rxSq) + (y1pSq / rySq) + if lambda > 1 { + let scale = sqrt(lambda) + rx *= scale + ry *= scale + rxSq = rx * rx + rySq = ry * ry + } + + let numerator = max(0, rxSq * rySq - rxSq * y1pSq - rySq * x1pSq) + let denominator = (rxSq * y1pSq) + (rySq * x1pSq) + let factor = denominator == 0 ? 0 : sqrt(numerator / denominator) + let sign: CGFloat = (arc.largeArc == arc.sweep) ? -1 : 1 + + let cxp = sign * factor * (rx * y1p) / ry + let cyp = sign * -factor * (ry * x1p) / rx + + let cx = cosPhi * cxp - sinPhi * cyp + (startPoint.x + endPoint.x) / 2.0 + let cy = sinPhi * cxp + cosPhi * cyp + (startPoint.y + endPoint.y) / 2.0 + + let startVector = CGPoint(x: (x1p - cxp) / rx, y: (y1p - cyp) / ry) + let endVector = CGPoint(x: (-x1p - cxp) / rx, y: (-y1p - cyp) / ry) + + let startAngle = angleBetween(CGPoint(x: 1, y: 0), and: startVector) + var deltaAngle = angleBetween(startVector, and: endVector) + + if !arc.sweep && deltaAngle > 0 { + deltaAngle -= 2 * .pi + } else if arc.sweep && deltaAngle < 0 { + deltaAngle += 2 * .pi + } + + let segments = max(Int(ceil(abs(deltaAngle) / (.pi / 2))), 1) + let delta = deltaAngle / CGFloat(segments) + + for segment in 0.. CGPoint { + let x = rx * cos(angle) + let y = ry * sin(angle) + let transformedX = cosPhi * x - sinPhi * y + centerX + let transformedY = sinPhi * x + cosPhi * y + centerY + return CGPoint(x: transformedX, y: transformedY) + } + + private static func transformEllipsePoint(_ point: CGPoint, + cosPhi: CGFloat, + sinPhi: CGFloat, + centerX: CGFloat, + centerY: CGFloat) -> CGPoint { + CGPoint( + x: cosPhi * point.x - sinPhi * point.y + centerX, + y: sinPhi * point.x + cosPhi * point.y + centerY + ) + } + + private static func angleBetween(_ u: CGPoint, and v: CGPoint) -> CGFloat { + let dot = u.x * v.x + u.y * v.y + let lengthProduct = hypot(u.x, u.y) * hypot(v.x, v.y) + guard lengthProduct != 0 else { return 0 } + let clamped = max(-1, min(1, dot / lengthProduct)) + let angle = acos(clamped) + let cross = u.x * v.y - u.y * v.x + return cross < 0 ? -angle : angle + } + + /// Convert color string to CGColor + private static func isNone(_ value: String) -> Bool { + value.trimmingCharacters(in: .whitespacesAndNewlines).lowercased() == "none" + } + + private static func effectiveAlpha(base: Double?, component: Double?) -> CGFloat { + let alpha = (base ?? 1.0) * (component ?? 1.0) + return CGFloat(max(0, min(1, alpha))) + } + + private static func colorFromString(_ colorString: String, alpha: CGFloat) -> CGColor { + let trimmed = colorString.trimmingCharacters(in: .whitespacesAndNewlines) + let lowercased = trimmed.lowercased() + if lowercased == "currentcolor" { + return CGColor(red: 0, green: 0, blue: 0, alpha: alpha) + } + if lowercased == "transparent" { + return CGColor(red: 0, green: 0, blue: 0, alpha: 0) + } + if trimmed.hasPrefix("#") { + return colorFromHex(trimmed, alpha: alpha) + } + if lowercased.hasPrefix("rgb") { + return colorFromRGBFunction(lowercased, alpha: alpha) + } + return CGColor(red: 0, green: 0, blue: 0, alpha: alpha) + } + + private static func colorFromHex(_ hexString: String, alpha: CGFloat) -> CGColor { + let hex = String(hexString.dropFirst()) + var r: CGFloat = 0 + var g: CGFloat = 0 + var b: CGFloat = 0 + var a = alpha + + switch hex.count { + case 3: // RGB + r = component(from: hex, start: 0, length: 1) + g = component(from: hex, start: 1, length: 1) + b = component(from: hex, start: 2, length: 1) + case 4: // RGBA + r = component(from: hex, start: 0, length: 1) + g = component(from: hex, start: 1, length: 1) + b = component(from: hex, start: 2, length: 1) + a *= component(from: hex, start: 3, length: 1) + case 6: // RRGGBB + r = component(from: hex, start: 0, length: 2) + g = component(from: hex, start: 2, length: 2) + b = component(from: hex, start: 4, length: 2) + case 8: // RRGGBBAA + r = component(from: hex, start: 0, length: 2) + g = component(from: hex, start: 2, length: 2) + b = component(from: hex, start: 4, length: 2) + a *= component(from: hex, start: 6, length: 2) + default: + break + } + + return CGColor(red: r, green: g, blue: b, alpha: a) + } + + private static func component(from hex: String, start: Int, length: Int) -> CGFloat { + let startIndex = hex.index(hex.startIndex, offsetBy: start) + let endIndex = hex.index(startIndex, offsetBy: length) + let substring = hex[startIndex.. CGColor { + let start = string.index(after: string.firstIndex(of: "(") ?? string.startIndex) + let end = string.firstIndex(of: ")") ?? string.endIndex + let params = string[start..= 3 else { + return CGColor(red: 0, green: 0, blue: 0, alpha: alpha) + } + func parseComponent(_ value: String) -> CGFloat { + if value.hasSuffix("%"), let percent = Double(value.dropLast()) { + return CGFloat(percent / 100.0) + } + if let number = Double(value) { + return CGFloat(number / 255.0) + } + return 0 + } + let r = parseComponent(components[0]) + let g = parseComponent(components[1]) + let b = parseComponent(components[2]) + var a = alpha + if components.count > 3, let alphaComponent = Double(components[3]) { + a *= CGFloat(alphaComponent) + } + return CGColor(red: r, green: g, blue: b, alpha: a) + } +} diff --git a/Sources/PhosphorSwift/SVGRenderer.swift b/Sources/PhosphorSwift/SVGRenderer.swift new file mode 100644 index 000000000..2dbc74305 --- /dev/null +++ b/Sources/PhosphorSwift/SVGRenderer.swift @@ -0,0 +1,182 @@ +// +// SVGRenderer.swift +// Phosphor Icons +// +// Created by Phosphor Contributors. +// + +import SwiftUI +import CoreGraphics +import Foundation +#if canImport(UIKit) +import UIKit +#elseif canImport(AppKit) +import AppKit +#endif + +/// High-performance SVG renderer that generates icon weights dynamically +/// Replaces the massive bundle approach with on-demand rendering +public final class SVGRenderer { + + /// Thread-safe singleton instance for optimal performance + public static let shared = SVGRenderer() + + /// Cache for parsed SVG data to avoid redundant XML parsing + private let svgCache = NSCache() + + /// Cache for rendered images to avoid redundant drawing operations + private let imageCache = NSCache() + + /// Concurrent queue for background SVG parsing and rendering + private let renderQueue = DispatchQueue(label: "com.phosphor.svg-renderer", + qos: .userInitiated, + attributes: .concurrent) + + private init() { + // Configure caches for optimal memory usage + svgCache.countLimit = 200 // Reasonable limit for base SVGs + imageCache.countLimit = 1000 // More generous for rendered variants + + // Clear caches on memory pressure + #if canImport(UIKit) + NotificationCenter.default.addObserver( + forName: UIApplication.didReceiveMemoryWarningNotification, + object: nil, + queue: .main + ) { [weak self] _ in + self?.clearCaches() + } + #endif + } + + /// Renders an icon with specified weight and size + /// - Parameters: + /// - iconName: Base icon name (without weight suffix) + /// - weight: Visual weight to apply + /// - size: Target size for rendering + /// - color: Icon color (default: label color) + /// - Returns: SwiftUI Image ready for display + public func renderIcon( + _ iconName: String, + weight: Ph.IconWeight = .regular, + size: CGSize = CGSize(width: 24, height: 24), + color: Color = .primary + ) -> Image { + + let cacheKey = cacheKeyFor(iconName: iconName, weight: weight, size: size, color: color) + + // Check for cached rendered image + if let cachedImage = imageCache.object(forKey: cacheKey) { + return makeTemplateImage(from: cachedImage, named: iconName) + } + + // Load and parse SVG data + guard let svgData = loadSVGData(for: iconName, weight: weight) ?? loadSVGData(for: iconName, weight: .regular) else { + // Create a simple fallback image using a question mark path + let fallbackSVG = SVGData( + viewBox: CGRect(x: 0, y: 0, width: 256, height: 256), + paths: [SVGPath(pathData: "M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Z", fill: "currentColor")] + ) + guard let fallbackImage = renderSVGToImage(fallbackSVG, size: size) else { + return Image("questionmark", bundle: .main) // Final fallback + } + return makeTemplateImage(from: fallbackImage, named: "fallback") + } + + guard let renderedImage = renderSVGToImage(svgData, size: size) else { + return Image("questionmark", bundle: .main) // Fallback + } + + // Cache the rendered result + imageCache.setObject(renderedImage, forKey: cacheKey) + + return makeTemplateImage(from: renderedImage, named: iconName) + } + + /// Loads and parses SVG data from bundle, with caching + private func loadSVGData(for iconName: String, weight: Ph.IconWeight) -> SVGData? { + let cacheKey = "\(weight.rawValue)-\(iconName)" as NSString + + // Check cache first + if let cachedData = svgCache.object(forKey: cacheKey) { + return cachedData + } + + // Load from bundle (from BaseSVGs directory) + let subdirectory = "BaseSVGs/\(weight.rawValue)" + guard let svgURL = Bundle.module.url(forResource: iconName, withExtension: "svg", subdirectory: subdirectory), + let svgString = try? String(contentsOf: svgURL) else { + return nil + } + + // Parse SVG + guard let svgData = SVGParser.parse(svgString) else { + return nil + } + + // Cache parsed data + svgCache.setObject(svgData, forKey: cacheKey) + return svgData + } + + /// Renders transformed SVG to CGImage + private func renderSVGToImage(_ svgData: SVGData, size: CGSize) -> CGImage? { + return SVGRasterizer.rasterize(svgData, to: size) + } + + private func makeTemplateImage(from cgImage: CGImage, named iconName: String) -> Image { + Image(cgImage, scale: 1.0, label: Text(iconName)).renderingMode(.template) + } + + private func cacheKeyFor(iconName: String, weight: Ph.IconWeight, size: CGSize, color: Color) -> NSString { + let colorDescription = String(describing: color) + return "\(iconName)-\(weight.rawValue)-\(size.width)x\(size.height)-\(colorDescription)" as NSString + } + + /// Clears all caches to free memory + public func clearCaches() { + svgCache.removeAllObjects() + imageCache.removeAllObjects() + } +} + +/// Represents parsed SVG data with path information +public class SVGData { + let viewBox: CGRect + let paths: [SVGPath] + + public init(viewBox: CGRect, paths: [SVGPath]) { + self.viewBox = viewBox + self.paths = paths + } +} + +/// Represents an SVG path with styling information +public struct SVGPath { + let pathData: String + let fillRule: String? + let strokeWidth: Double? + let fill: String? + let stroke: String? + let opacity: Double? + let fillOpacity: Double? + let strokeOpacity: Double? + + public init(pathData: String, + fillRule: String? = nil, + strokeWidth: Double? = nil, + fill: String? = nil, + stroke: String? = nil, + opacity: Double? = nil, + fillOpacity: Double? = nil, + strokeOpacity: Double? = nil) { + self.pathData = pathData + self.fillRule = fillRule + self.strokeWidth = strokeWidth + self.fill = fill + self.stroke = stroke + self.opacity = opacity + self.fillOpacity = fillOpacity + self.strokeOpacity = strokeOpacity + } +} diff --git a/core b/core index fe23e2534..b571e7178 160000 --- a/core +++ b/core @@ -1 +1 @@ -Subproject commit fe23e2534cdb7bec24bd8e6bd99b3676bcf0d54f +Subproject commit b571e7178156c2469fc5b342e79a0a3eedf2530b